diff --git a/components/common/app-page.js b/components/common/app-page.js index a7b5a49..a9559dc 100644 --- a/components/common/app-page.js +++ b/components/common/app-page.js @@ -6,9 +6,12 @@ import AppText from '../common/app-text' import { Colors, Typography } from '../../styles/redesign' -const AppPage = ({ children, title }) => { +const AppPage = ({ children, contentContainerStyle, title }) => { return( - + {title && {title}} {children} @@ -17,6 +20,7 @@ const AppPage = ({ children, title }) => { AppPage.propTypes = { children: PropTypes.node, + contentContainerStyle: PropTypes.object, title: PropTypes.string }