pinafore/src/routes/direct.html
Nolan Lawson b3098c8c5a fix: tweaks to conversations (direct) UI (#1137)
- make the url `/direct`
- call it "Direct messages"
- fix sapper export
- retain DM background color
- add test
2019-04-13 15:30:49 -07:00

21 lines
369 B
HTML

<Title name="Direct messages" />
<LazyPage {pageComponent} {params} />
<script>
import Title from './_components/Title.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/direct.html'
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>