gab-social/app/javascript/gabsocial/pages/notifications_page.js

29 lines
811 B
JavaScript
Raw Normal View History

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