Added about routes pages to react app, layout, AboutSidebar

• Added:
- about routes pages to react app, layout, AboutSidebar
- about, dmca, investors, privacy policy, terms of sale, terms of service
This commit is contained in:
mgabdev
2020-07-10 15:22:13 -05:00
parent ac229e0cc1
commit 57ce03ff37
4 changed files with 251 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
import PageTitle from '../features/ui/util/page_title'
import AboutLayout from '../layouts/about_layout'
export default class AboutPage extends PureComponent {
static propTypes = {
title: PropTypes.string.isRequired,
children: PropTypes.node.isRequired,
}
render() {
const { children, title } = this.props
return (
<AboutLayout
noComposeButton
showBackBtn
title={title}
>
<PageTitle path={title} />
{children}
</AboutLayout>
)
}
}