From 2da70be2941e2b14acd9fc3816c3e27cc043d401 Mon Sep 17 00:00:00 2001 From: Manuel Calavera Date: Wed, 4 Sep 2019 22:15:48 -0700 Subject: [PATCH] feat: favs tab --- src/AppV2.js | 2 + src/v2/components/Favorites/Accounts.jsx | 131 +++++++++++++++++++++++ src/v2/components/Favorites/index.jsx | 47 ++++++++ src/v2/components/Favorites/styles.js | 118 ++++++++++++++++++++ 4 files changed, 298 insertions(+) create mode 100644 src/v2/components/Favorites/Accounts.jsx create mode 100644 src/v2/components/Favorites/index.jsx create mode 100644 src/v2/components/Favorites/styles.js diff --git a/src/AppV2.js b/src/AppV2.js index f73f3392..f177822f 100644 --- a/src/AppV2.js +++ b/src/AppV2.js @@ -29,6 +29,7 @@ const Applications = lazy(() => import('v2/components/Applications')); const ApplicationDetail = lazy(() => import('v2/components/Applications/Detail'), ); +const Favorites = lazy(() => import('v2/components/Favorites')); const useStyles = makeStyles(theme => ({ root: { @@ -93,6 +94,7 @@ const App = () => { path="/applications/:id" component={ApplicationDetail} /> +