diff --git a/frontend/src/App.js b/frontend/src/App.js index 37acfa1..ae375b5 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -12,9 +12,10 @@ import Home from "./routes/Home"; import Family from "./routes/Family"; import NewAccount from "./routes/NewAccount"; import Onboarding from './routes/Onboarding'; +import Receive from './routes/Receive'; import React from 'react'; -import {ContactsIcon, CrossIcon, GearIcon, MenuIcon} from '@bitcoin-design/bitcoin-icons-react/filled'; -import {ChartSquareBarIcon} from '@heroicons/react/solid'; +import { ContactsIcon, CrossIcon, GearIcon, HomeIcon, MenuIcon } from '@bitcoin-design/bitcoin-icons-react/filled'; +import { ChartSquareBarIcon } from '@heroicons/react/solid'; import NewFamily from './routes/NewFamily'; import Invite from './routes/Invite'; @@ -22,13 +23,19 @@ const Child = {}; function App() { const [menuActive, setMenuActive] = React.useState(false) - + const toggleMenu = () => { setMenuActive(!menuActive) } - + return (
+