mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
Account settings: PayoutPreferencesPage
This commit is contained in:
parent
b2176714b8
commit
49bb7259b2
3 changed files with 14 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
import React from 'react';
|
||||
import { Page } from '../../components';
|
||||
|
||||
export default () => (
|
||||
<Page title="Payout preferences">
|
||||
</Page>
|
||||
);
|
||||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue