1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-25 13:09:19 +01:00
2018-01-08 17:44:29 -08:00

22 lines
372 B
HTML

<:Head>
<title>Settings</title>
</:Head>
<Layout page='settings'>
<SettingsLayout page='home'>
<h1>Settings</h1>
</SettingsLayout>
</Layout>
<script>
import Layout from '../_components/Layout.html';
import SettingsLayout from './_components/SettingsLayout.html'
export default {
components: {
Layout,
SettingsLayout
}
};
</script>