mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-07-16 10:03:12 -07:00
feat: i18n add settings page
This commit is contained in:
parent
61fd0e7186
commit
48485fc546
11 changed files with 128 additions and 23 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue