pinafore/routes/muted.html

21 lines
437 B
HTML
Raw Normal View History

<svelte:head>
<title>Pinafore Muted users</title>
</svelte:head>
<Layout page='muted'>
<LazyPage {pageComponent} {params} />
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/muted.html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>