pinafore/routes/notifications.html

19 lines
310 B
HTML

<:Head>
<title>Notifications</title>
</:Head>
<Layout page='notifications'>
<h1>Notifications</h1>
<p>This is the 'notifications' page. There's not much here.</p>
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
},
};
</script>