2020-02-17 12:50:29 -05:00
|
|
|
import { Fragment } from 'react'
|
|
|
|
import LinkFooter from '../components/link_footer'
|
|
|
|
import WhoToFollowPanel from '../components/panel/who_to_follow_panel'
|
|
|
|
import TrendsPanel from '../components/panel/trends_panel'
|
2020-02-24 16:56:07 -05:00
|
|
|
import DefaultLayout from '../layouts/default_layout'
|
2020-02-17 12:50:29 -05:00
|
|
|
|
|
|
|
export default class NotificationsPage extends PureComponent {
|
|
|
|
render() {
|
|
|
|
const { children } = this.props
|
|
|
|
|
|
|
|
return (
|
|
|
|
<DefaultLayout
|
|
|
|
title='Notifications'
|
|
|
|
layout={(
|
|
|
|
<Fragment>
|
|
|
|
<TrendsPanel />
|
|
|
|
<WhoToFollowPanel />
|
|
|
|
<LinkFooter />
|
|
|
|
</Fragment>
|
|
|
|
)}
|
2020-02-22 18:26:23 -05:00
|
|
|
showBackBtn
|
2020-02-17 12:50:29 -05:00
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</DefaultLayout>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|