Handle adding work for homie

This commit is contained in:
Bilal
2020-09-19 04:46:01 +03:00
parent 533ef368cf
commit 6e0df8e7b7
9 changed files with 288 additions and 69 deletions

View File

@@ -13,8 +13,9 @@ import {
CHIPS,
MAKE_MONEY_MOVE,
HOMIE_FLOW,
HOMIES
HOMIES, PUT_IN_WORK
} from './RouteNames';
import PutInWork from "./cash/PutInWork";
function App() {
@@ -37,6 +38,10 @@ function App() {
<RoutableNavItem href={MAKE_MONEY_MOVE}>
Make Money Move
</RoutableNavItem>
<RoutableNavItem href={PUT_IN_WORK}>
Put in Work
</RoutableNavItem>
</Navbar>
</div>
@@ -46,6 +51,7 @@ function App() {
<Route path={HOMIE_FLOW} component={Flow} />
<Route path={CHIPS} component={Chips} />
<Route path={MAKE_MONEY_MOVE} component={MakeMoneyMove} />
<Route path={PUT_IN_WORK} component={PutInWork} />
</div>
</Router>
);