59f7b6ff26
This reverts commit 18910fa2ed470fe12ffbfb83df18e206101f0a05.
15 lines
430 B
JavaScript
15 lines
430 B
JavaScript
import { getGetServerSideProps } from '../api/ssrApollo'
|
|
import Layout from '../components/layout'
|
|
import Notifications from '../components/notifications'
|
|
import { NOTIFICATIONS } from '../fragments/notifications'
|
|
|
|
export const getServerSideProps = getGetServerSideProps(NOTIFICATIONS)
|
|
|
|
export default function NotificationPage ({ ssrData }) {
|
|
return (
|
|
<Layout>
|
|
<Notifications ssrData={ssrData} />
|
|
</Layout>
|
|
)
|
|
}
|