diff --git a/src/containers/PayoutPreferencesPage/PayoutPreferencesPage.js b/src/containers/PayoutPreferencesPage/PayoutPreferencesPage.js
index f3bb53c0..7e7f588c 100644
--- a/src/containers/PayoutPreferencesPage/PayoutPreferencesPage.js
+++ b/src/containers/PayoutPreferencesPage/PayoutPreferencesPage.js
@@ -4,7 +4,14 @@ import { compose } from 'redux';
import { connect } from 'react-redux';
import * as propTypes from '../../util/propTypes';
import { isScrollingDisabled } from '../../ducks/UI.duck';
-import { Page } from '../../components';
+import {
+ Page,
+ LayoutSingleColumn,
+ LayoutWrapperTopbar,
+ LayoutWrapperMain,
+ LayoutWrapperFooter,
+ Footer,
+} from '../../components';
import { TopbarContainer } from '../../containers';
export const PayoutPreferencesPageComponent = props => {
@@ -17,7 +24,15 @@ export const PayoutPreferencesPageComponent = props => {
title="Payout preferences"
scrollingDisabled={scrollingDisabled}
>
-
+
+
+
+
+ Content
+
+
+
+
);
};
diff --git a/src/containers/PayoutPreferencesPage/__snapshots__/PayoutPreferencesPage.test.js.snap b/src/containers/PayoutPreferencesPage/__snapshots__/PayoutPreferencesPage.test.js.snap
index f6150594..558797ae 100644
--- a/src/containers/PayoutPreferencesPage/__snapshots__/PayoutPreferencesPage.test.js.snap
+++ b/src/containers/PayoutPreferencesPage/__snapshots__/PayoutPreferencesPage.test.js.snap
@@ -7,6 +7,28 @@ exports[`PayoutPreferencesPage matches snapshot 1`] = `
scrollingDisabled={false}
title="Payout preferences"
>
-
+
+
+
+
+
+ Content
+
+
+
+
+
`;