57ce03ff37
• Added: - about routes pages to react app, layout, AboutSidebar - about, dmca, investors, privacy policy, terms of sale, terms of service
26 lines
521 B
JavaScript
26 lines
521 B
JavaScript
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>
|
|
)
|
|
}
|
|
|
|
} |