mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-22 09:25:24 +03:00
13 lines
261 B
Vue
13 lines
261 B
Vue
<script setup lang="ts">
|
|
import type { Status } from 'masto'
|
|
|
|
defineProps<{
|
|
timelines: Status[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<template v-for="status of timelines" :key="status.id">
|
|
<StatusCard :status="status" border="t base" />
|
|
</template>
|
|
</template>
|