wallet screen

This commit is contained in:
João Geonizeli
2021-08-11 20:51:42 -03:00
parent 38b60ca0fa
commit a057931c51
19 changed files with 656 additions and 20 deletions

View File

@@ -2,14 +2,17 @@ import type { FC } from "react";
import React from "react";
import { Switch, Route } from "react-router-dom";
import { Home } from "./pages";
import { Home, Wallet } from "./pages";
export const Routes: FC = () => {
return (
<Switch>
<Route path="/">
<Route exact path="/">
<Home />
</Route>
<Route exact path="/wallet">
<Wallet />
</Route>
</Switch>
);
};