mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-14 01:37:12 +00:00
22 lines
560 B
Vue
22 lines
560 B
Vue
<script setup>
|
|
import InboxCard from './InboxCard.vue';
|
|
import { inboxes } from 'dashboard/components-next/captain/pageComponents/emptyStates/captainEmptyStateContent.js';
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Captain/Assistant/InboxCard"
|
|
:layout="{ type: 'grid', width: '700px' }"
|
|
>
|
|
<Variant title="Inbox Card">
|
|
<div
|
|
v-for="inbox in inboxes"
|
|
:key="inbox.id"
|
|
class="px-20 py-4 bg-white dark:bg-slate-900"
|
|
>
|
|
<InboxCard :id="inbox.id" :inbox="inbox" />
|
|
</div>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|