mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
17 lines
315 B
Vue
17 lines
315 B
Vue
<script setup lang="ts">
|
|
import type { Account } from 'masto'
|
|
|
|
const { account } = defineProps<{
|
|
account: Account
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div flex justify-between>
|
|
<AccountInfo :account="account" p1 />
|
|
<div h-full p1>
|
|
<AccountFollowButton :account="account" />
|
|
</div>
|
|
</div>
|
|
</template>
|