mirror of
https://git.notfire.cc/notfire/akkoma-fe.git
synced 2026-01-11 13:33:24 -08:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
import Timeline from '../timeline/timeline.vue'
|
|
const PublicTimeline = {
|
|
components: {
|
|
Timeline
|
|
},
|
|
computed: {
|
|
timeline () { return this.$store.state.statuses.timelines.public }
|
|
}
|
|
}
|
|
|
|
export default PublicTimeline
|