pinafore/routes/notifications.html

23 lines
437 B
HTML
Raw Normal View History

2018-01-07 05:44:47 +01:00
<:Head>
<title>Notifications</title>
</:Head>
<Layout page='notifications'>
2018-01-19 08:37:43 +01:00
<FreeTextLayout>
<h1>Notifications</h1>
2018-01-07 05:44:47 +01:00
2018-01-19 08:37:43 +01:00
<p>Your notifications will appear here when logged in.</p>
</FreeTextLayout>
2018-01-07 05:44:47 +01:00
</Layout>
<script>
import Layout from './_components/Layout.html';
2018-01-19 08:37:43 +01:00
import FreeTextLayout from './_components/FreeTextLayout.html'
2018-01-07 05:44:47 +01:00
export default {
components: {
2018-01-19 08:37:43 +01:00
Layout,
FreeTextLayout
2018-01-07 05:44:47 +01:00
},
};
</script>