-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.jsx
56 lines (44 loc) · 1.69 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* Main React component for the application.
*
* This component is the main entry point for the application and is responsible for
* rendering the root component and initializing any required services or dependencies.
* The component also defines the application routes and provides a navigation menu for
* navigating between the different views.
*
* The component uses the React Router library to define the application routes and the
* React Bootstrap library for styling and UI components. The component also includes
* several custom components for handling user authentication, API calls, and data
* visualization.
*/
import { useEffect, useState } from 'react'
import { BrowserRouter, Route, Routes } from "react-router-dom"
import './App.css'
import { auth} from './Fire.jsx'
import Nav from './layout/Nav.jsx'
import # from './views/#.jsx'
import Login from './views/#.jsx'
import Home from './views/Home.jsx'
const App = () => {
const [user, setUser] = useState(null);
// When the Firebase auth provider updates the User, this hook updates the app state.
useEffect(() => {
auth.onAuthStateChanged(user => {
console.log('User authenticated: ' + JSON.stringify(user))
setUser(user)
})
}, [])
return (
<div className="App">
<BrowserRouter>
<Nav user={user}/>
<Routes>
<Route exact path="/sign-up" element={<#/>} />
<Route exact path="/sign-in" element={<Login/>} />
<Route exact path="/" element={<Home/>} />
</Routes>
</BrowserRouter>
</div>
)
}
export default App