mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
14 lines
264 B
Vue
14 lines
264 B
Vue
<script setup lang="ts">
|
|
import type { Status } from 'masto'
|
|
|
|
const { status } = defineProps<{
|
|
status: Status
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="status-body">
|
|
<CommonRichContent :content="status.content" :emojis="status.emojis" />
|
|
</div>
|
|
</template>
|