1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 07:28:43 +01:00

21 lines
444 B
HTML
Raw Normal View History

<svelte:head>
2018-03-16 09:18:40 -07:00
<title>Pinafore Follow requests</title>
</svelte:head>
2018-03-16 09:18:40 -07:00
<Layout page='muted'>
<LazyPage {pageComponent} {params} />
2018-03-16 09:18:40 -07:00
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/requests.html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>