stacker.news/pages/notifications.js

11 lines
213 B
JavaScript
Raw Normal View History

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