2022-04-21 17:48:27 +00:00
|
|
|
import { getGetServerSideProps } from '../api/ssrApollo'
|
|
|
|
import Layout from '../components/layout'
|
|
|
|
import Notifications from '../components/notifications'
|
|
|
|
import { NOTIFICATIONS } from '../fragments/notifications'
|
2022-04-20 21:35:07 +00:00
|
|
|
|
|
|
|
export const getServerSideProps = getGetServerSideProps(NOTIFICATIONS)
|
|
|
|
|
2023-07-23 15:08:43 +00:00
|
|
|
export default function NotificationPage ({ ssrData }) {
|
2022-04-20 21:35:07 +00:00
|
|
|
return (
|
|
|
|
<Layout>
|
2023-07-23 15:08:43 +00:00
|
|
|
<Notifications ssrData={ssrData} />
|
2022-04-20 21:35:07 +00:00
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
}
|