2021-06-24 23:56:01 +00:00
|
|
|
import Layout from '../components/layout'
|
2021-08-17 23:07:52 +00:00
|
|
|
import Notifications from '../components/notifications'
|
2021-06-24 23:56:01 +00:00
|
|
|
|
2021-08-17 23:07:52 +00:00
|
|
|
export default function NotificationPage () {
|
2021-06-24 23:56:01 +00:00
|
|
|
return (
|
|
|
|
<Layout>
|
2021-08-17 23:07:52 +00:00
|
|
|
<Notifications />
|
2021-06-24 23:56:01 +00:00
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
}
|