aboutsummaryrefslogtreecommitdiff
path: root/src/components/public_timeline/public_timeline.js
blob: cac422ecbd3f0a3a5942b50fdea23560465462e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Timeline from '../timeline/timeline.vue'
const PublicTimeline = {
  components: {
    Timeline
  },
  computed: {
    timeline () { return this.$store.state.statuses.timelines.public }
  }
}

export default PublicTimeline