Account settings: PayoutPreferencesPage

This commit is contained in:
Vesa Luusua 2017-01-11 02:24:18 +02:00
parent b2176714b8
commit 49bb7259b2
3 changed files with 14 additions and 0 deletions

View file

@ -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 } />
<MatchWhenAuthorized
exactly
pattern="/account/payout-preferences"
component={ PayoutPreferencesPage } />
<MatchWhenAuthorized
exactly
pattern="/account/security"

View file

@ -0,0 +1,7 @@
import React from 'react';
import { Page } from '../../components';
export default () => (
<Page title="Payout preferences">
</Page>
);

View file

@ -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,