|
<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" pt-4 />
|
|
</template>
|
|
</template>
|