Add user menu sidebar (#195)

This commit is contained in:
Frank Noirot
2023-07-27 18:59:40 -04:00
committed by GitHub
parent 94918ccb2e
commit 894bddb369
17 changed files with 364 additions and 116 deletions

View File

@ -1,13 +1,13 @@
import ReactDOM from 'react-dom/client'
import './index.css'
import { Auth } from './Auth'
import reportWebVitals from './reportWebVitals'
import { Toaster } from 'react-hot-toast'
import { Router } from './Router'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<>
<Auth />
<Router />
<Toaster position="bottom-center" />
</>
)