2022-09-27 14:26:56 -04:00
|
|
|
import React from 'react'
|
2022-09-27 15:51:16 -04:00
|
|
|
import ReactDOM from 'react-dom/client'
|
2022-09-27 16:31:44 -04:00
|
|
|
import 'font-awesome/css/font-awesome.min.css'
|
|
|
|
import 'bootstrap/dist/css/bootstrap.min.css'
|
2022-09-27 21:41:39 -04:00
|
|
|
import './stylesheets/site.css'
|
2022-09-27 14:26:56 -04:00
|
|
|
import App from './components/App'
|
|
|
|
|
|
|
|
const container = document.getElementById('root')
|
|
|
|
const root = ReactDOM.createRoot(container)
|
|
|
|
|
|
|
|
root.render(<App />)
|