add exchange order screen

This commit is contained in:
João Geonizeli
2021-08-13 23:55:37 -03:00
parent be31d7165a
commit 4922994da6
12 changed files with 516 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import type { FC } from "react";
import React from "react";
import { Switch, Route } from "react-router-dom";
import { Home, Wallet } from "./pages";
import { Home, Orders, Wallet } from "./pages";
export const Routes: FC = () => {
return (
@@ -13,6 +13,9 @@ export const Routes: FC = () => {
<Route exact path="/wallet">
<Wallet />
</Route>
<Route exact path="/orders/exchange">
<Orders.Exchange />
</Route>
</Switch>
);
};