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

27 lines
698 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'
import TrendsPanel from '../components/panel/trends_panel'
import DefaultLayout from '../components/layouts/default_layout'
export default class NotificationsPage extends PureComponent {
render() {
const { children } = this.props
return (
<DefaultLayout
title='Notifications'
layout={(
<Fragment>
<TrendsPanel />
<WhoToFollowPanel />
<LinkFooter />
</Fragment>
)}
2020-02-22 23:26:23 +00:00
showBackBtn
2020-02-17 17:50:29 +00:00
>
{children}
</DefaultLayout>
)
}
}