yandere_fe/src/components/timeline/timeline.js

13 lines
151 B
JavaScript
Raw Normal View History

2016-10-28 06:19:42 -07:00
import Status from '../status/status.vue'
2016-10-26 10:03:55 -07:00
const Timeline = {
props: [
'timeline'
2016-10-28 06:19:42 -07:00
],
components: {
Status
}
2016-10-26 10:03:55 -07:00
}
2016-10-28 06:19:42 -07:00
export default Timeline