feat: i18n add settings page

This commit is contained in:
Andres 2023-10-17 18:05:02 +02:00
parent 61fd0e7186
commit 48485fc546
11 changed files with 128 additions and 23 deletions

View file

@ -8,6 +8,7 @@ import Bar from "./components/Bar";
import Home from "./routes/Home";
import NotFound from "./routes/NotFound";
import Network from "./routes/Network/Network";
import Settings from "./routes/Settings";
function App() {
return (
@ -17,6 +18,7 @@ function App() {
<Switch>
<Route exact path="/" component={Home} />
<Route path="/network/:nwid" component={Network} />
<Route path="/settings" component={Settings} />
<Route path="/404" component={NotFound} />
<Redirect to="/404" />
</Switch>