014e476b5d
• Updated: - pages, layout component structures
24 lines
482 B
JavaScript
24 lines
482 B
JavaScript
import PageTitle from '../features/ui/util/page_title'
|
|
import ExploreLayout from '../layouts/explore_layout'
|
|
|
|
class ExplorePage extends PureComponent {
|
|
|
|
render() {
|
|
const { children, title } = this.props
|
|
|
|
return (
|
|
<ExploreLayout title={title}>
|
|
<PageTitle path={title} />
|
|
{children}
|
|
</ExploreLayout>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
ExplorePage.propTypes = {
|
|
title: PropTypes.string.isRequired,
|
|
children: PropTypes.node.isRequired,
|
|
}
|
|
|
|
export default ExplorePage |