-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
38 lines (34 loc) · 1002 Bytes
/
App.js
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
import React, { useState } from "react";
import SideBar from "./Components/SideBar";
import TaskList from "./Components/TaskList";
import LandingPage from "./Components/LandingPage";
import { useFirebaseWithUser } from "./Firebase";
import { LoadingIcon } from "./icons";
import "./styles.css";
const App = (props) => {
const [taskPage, setTaskPage] = useState("today");
const [listName, setListName] = useState("");
const [firebase, user, loading, error] = useFirebaseWithUser();
return (
<div className="container">
{!user && loading ? (
<div className="loading-box">
<LoadingIcon />
</div>
) : user ? (
<>
<SideBar
taskPage={taskPage}
setTaskPage={setTaskPage}
setListName={setListName}
listName={listName}
/>
<TaskList taskPage={taskPage} listName={listName} />
</>
) : (
<LandingPage />
)}
</div>
);
};
export default App;