aboutsummaryrefslogtreecommitdiff
path: root/src/components/dm_timeline/dm_timeline.js
blob: 8b5393a98a614eee85fc927a234f0d8cb729cfde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Timeline from '../timeline/timeline.vue'

const DMs = {
  computed: {
    timeline () {
      return this.$store.state.statuses.timelines.dms
    }
  },
  components: {
    Timeline
  }
}

export default DMs