2021-04-20 22:23:35 +00:00
|
|
|
import {useState} from "react"
|
|
|
|
import classNames from "classnames"
|
|
|
|
import Style from "./App.module.css"
|
2021-04-20 23:03:59 +00:00
|
|
|
import BoxWithHeader from "./components/BoxWithHeader"
|
2021-04-21 01:32:19 +00:00
|
|
|
import Button from "./components/Button"
|
2021-04-21 01:57:18 +00:00
|
|
|
import { faArchive, faArrowRight, faExclamationTriangle, faSearch, faTrash } from "@fortawesome/free-solid-svg-icons"
|
|
|
|
import Input from "./components/Input"
|
|
|
|
import InputWithIcon from "./components/InputWithIcon"
|
2021-04-21 13:08:54 +00:00
|
|
|
import Layout from "./components/Layout"
|
2021-04-21 13:37:12 +00:00
|
|
|
import ContextTheme from "./contexts/ContextTheme"
|
2021-04-21 16:00:21 +00:00
|
|
|
import { BrowserRouter } from "react-router-dom"
|
2021-04-21 16:21:30 +00:00
|
|
|
import { Route, Switch } from "react-router"
|
|
|
|
import PageHome from "./routes/PageHome"
|
|
|
|
import PageRepositories from "./routes/PageRepositories"
|
|
|
|
import PageAlerts from "./routes/PageAlerts"
|
|
|
|
import PageSettings from "./routes/PageSettings"
|
2021-04-20 22:09:13 +00:00
|
|
|
|
2021-04-20 22:07:39 +00:00
|
|
|
|
2021-04-20 22:23:35 +00:00
|
|
|
export default function App() {
|
2021-04-21 14:04:09 +00:00
|
|
|
const [theme, ] = useState("ThemeDark");
|
2021-04-20 22:23:35 +00:00
|
|
|
|
2021-04-20 22:09:13 +00:00
|
|
|
return (
|
2021-04-21 13:37:12 +00:00
|
|
|
<ContextTheme.Provider value={theme}>
|
2021-04-21 16:00:21 +00:00
|
|
|
<BrowserRouter>
|
|
|
|
|
2021-04-21 13:37:12 +00:00
|
|
|
<div className={classNames(Style.App, theme)}>
|
|
|
|
<Layout>
|
2021-04-21 16:21:30 +00:00
|
|
|
<Switch>
|
|
|
|
<Route path={"/"}>
|
|
|
|
<PageHome/>
|
|
|
|
</Route>
|
|
|
|
<Route path={"/repositories"}>
|
|
|
|
<PageRepositories/>
|
|
|
|
</Route>
|
|
|
|
<Route path={"/alerts"}>
|
|
|
|
<PageAlerts/>
|
|
|
|
</Route>
|
|
|
|
<Route path={"/settings"}>
|
|
|
|
<PageSettings/>
|
|
|
|
</Route>
|
|
|
|
</Switch>
|
2021-04-21 13:37:12 +00:00
|
|
|
</Layout>
|
|
|
|
</div>
|
2021-04-21 16:00:21 +00:00
|
|
|
|
|
|
|
</BrowserRouter>
|
2021-04-21 13:37:12 +00:00
|
|
|
</ContextTheme.Provider>
|
2021-04-20 22:09:13 +00:00
|
|
|
)
|
2021-04-20 22:07:39 +00:00
|
|
|
}
|