18 lines
245 B
HTML
18 lines
245 B
HTML
|
<:Head>
|
||
|
<title>Notifications</title>
|
||
|
</:Head>
|
||
|
|
||
|
<Layout page='notifications'>
|
||
|
<h1>Notifications</h1>
|
||
|
|
||
|
</Layout>
|
||
|
|
||
|
<script>
|
||
|
import Layout from './_components/Layout.html';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Layout
|
||
|
},
|
||
|
};
|
||
|
</script>
|