Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dconco authored Nov 27, 2023
1 parent 8c8eb8d commit 058498c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from 'react'
import { createRoot } from 'react-dom/client'
import Router from './Router'
import reportWebVitals from './reportWebVitals';
import './index.css'

const Root = createRoot(document.getElementById('root'))
Root.render(
<React.StrictMode>
<Router />
</React.StrictMode>
)


// 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
reportWebVitals();

0 comments on commit 058498c

Please sign in to comment.