pinafore/routes/settings/index.html

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>