From 49bb7259b2581c511bc979afc90ef95ebe9ce4d7 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Wed, 11 Jan 2017 02:24:18 +0200 Subject: [PATCH] Account settings: PayoutPreferencesPage --- src/Routes.js | 5 +++++ .../PayoutPreferencesPage/PayoutPreferencesPage.js | 7 +++++++ src/containers/index.js | 2 ++ 3 files changed, 14 insertions(+) create mode 100644 src/containers/PayoutPreferencesPage/PayoutPreferencesPage.js diff --git a/src/Routes.js b/src/Routes.js index 078e4d82..55ed366a 100644 --- a/src/Routes.js +++ b/src/Routes.js @@ -14,6 +14,7 @@ import { PasswordChangePage, PasswordForgottenPage, PaymentMethodsPage, + PayoutPreferencesPage, ProfilePage, EditProfilePage, SalesConversationPage, @@ -173,6 +174,10 @@ class Routes extends React.Component { exactly pattern="/account/payment-methods" component={ PaymentMethodsPage } /> + ( + + +); diff --git a/src/containers/index.js b/src/containers/index.js index eb0ce9d5..3fb7b7b8 100644 --- a/src/containers/index.js +++ b/src/containers/index.js @@ -12,6 +12,7 @@ import OrderPage from './OrderPage/OrderPage'; import PasswordChangePage from './PasswordChangePage/PasswordChangePage'; import PasswordForgottenPage from './PasswordForgottenPage/PasswordForgottenPage'; import PaymentMethodsPage from './PaymentMethodsPage/PaymentMethodsPage'; +import PayoutPreferencesPage from './PayoutPreferencesPage/PayoutPreferencesPage'; import ProfilePage from './ProfilePage/ProfilePage'; import SalesConversationPage from './SalesConversationPage/SalesConversationPage'; import SearchPage from './SearchPage/SearchPage'; @@ -33,6 +34,7 @@ export { PasswordChangePage, PasswordForgottenPage, PaymentMethodsPage, + PayoutPreferencesPage, ProfilePage, SalesConversationPage, SearchPage,