initial Auth implementation (#44)

* initial implementation

* update api url
This commit is contained in:
Kurt Hutten
2023-03-06 18:18:01 +11:00
committed by GitHub
parent 4c554b6549
commit 176d2d6394
6 changed files with 54 additions and 3 deletions

View File

@ -1,13 +1,13 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './App'
import { Auth } from './Auth'
import reportWebVitals from './reportWebVitals'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<React.StrictMode>
<App />
<Auth />
</React.StrictMode>
)