From 8d9695a91c5d0bc38eeb2898b105634fbd91388f Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Wed, 11 Jan 2017 00:26:24 +0200 Subject: [PATCH] ProfilePage --- src/Routes.js | 5 +++++ src/containers/ProfilePage/ProfilePage.js | 7 +++++++ src/containers/index.js | 2 ++ 3 files changed, 14 insertions(+) create mode 100644 src/containers/ProfilePage/ProfilePage.js diff --git a/src/Routes.js b/src/Routes.js index 95dc08c9..88a2296b 100644 --- a/src/Routes.js +++ b/src/Routes.js @@ -3,6 +3,7 @@ import { Match, Miss, Redirect } from 'react-router'; import { LandingPage, ListingPage, + ProfilePage, SearchPage, NotFoundPage, } from './containers'; @@ -21,6 +22,10 @@ const Routes = () => ( {/* Listing view */} + + {/* profile / storefront view */} + + ); diff --git a/src/containers/ProfilePage/ProfilePage.js b/src/containers/ProfilePage/ProfilePage.js new file mode 100644 index 00000000..d03cc097 --- /dev/null +++ b/src/containers/ProfilePage/ProfilePage.js @@ -0,0 +1,7 @@ +import React from 'react'; +import { Page } from '../../components'; + +export default ({ params }) => ( + + +); diff --git a/src/containers/index.js b/src/containers/index.js index 9fa08bfd..35838ca1 100644 --- a/src/containers/index.js +++ b/src/containers/index.js @@ -1,11 +1,13 @@ import LandingPage from './LandingPage/LandingPage'; import ListingPage from './ListingPage/ListingPage'; +import ProfilePage from './ProfilePage/ProfilePage'; import SearchPage from './SearchPage/SearchPage'; import NotFoundPage from './NotFoundPage/NotFoundPage'; export { LandingPage, ListingPage, + ProfilePage, SearchPage, NotFoundPage, };