remnantchat/src/index.tsx

16 lines
527 B
TypeScript
Raw Normal View History

2022-11-28 01:08:38 +00:00
import './polyfills'
2022-08-09 01:04:04 +00:00
import ReactDOM from 'react-dom/client'
2022-08-21 15:44:01 +00:00
import 'typeface-roboto'
2022-08-16 14:21:33 +00:00
import 'index.sass'
import Bootstrap from 'Bootstrap'
import reportWebVitals from 'reportWebVitals'
2022-08-09 01:04:04 +00:00
2022-08-09 02:04:37 +00:00
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
2022-09-01 03:05:24 +00:00
root.render(<Bootstrap />)
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
2022-08-09 02:04:37 +00:00
reportWebVitals()