2022-11-14 04:33:09 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Status } from 'masto'
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
timelines: Status[]
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<template v-for="status of timelines" :key="status.id">
|
2022-11-23 03:16:31 +01:00
|
|
|
<StatusCard :status="status" border="t base" pt-4 />
|
2022-11-14 04:33:09 +01:00
|
|
|
</template>
|
|
|
|
</template>
|