27 lines
614 B
HTML
27 lines
614 B
HTML
<:Head>
|
||
<title>Pinafore – Notifications</title>
|
||
</:Head>
|
||
|
||
<Layout page='notifications' virtual="true" virtualRealm="federated">
|
||
<HiddenFromSSR>
|
||
<FreeTextLayout>
|
||
<h1>Notifications</h1>
|
||
|
||
<p>Your notifications will appear here when logged in.</p>
|
||
</FreeTextLayout>
|
||
</HiddenFromSSR>
|
||
</Layout>
|
||
|
||
<script>
|
||
import Layout from './_components/Layout.html';
|
||
import FreeTextLayout from './_components/FreeTextLayout.html'
|
||
import HiddenFromSSR from './_components/HiddenFromSSR'
|
||
|
||
export default {
|
||
components: {
|
||
Layout,
|
||
FreeTextLayout,
|
||
HiddenFromSSR
|
||
},
|
||
};
|
||
</script> |