pinafore/routes/requests.html

21 lines
444 B
HTML
Raw Normal View History

<svelte:head>
2018-03-16 17:18:40 +01:00
<title>Pinafore Follow requests</title>
</svelte:head>
2018-03-16 17:18:40 +01:00
<Layout page='muted'>
<LazyPage {pageComponent} {params} />
2018-03-16 17:18:40 +01: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>