mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-06 14:08:10 +00:00
29 lines
678 B
Vue
29 lines
678 B
Vue
<script setup>
|
|
import ContactEmptyState from './ContactEmptyState.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Components/Contacts/EmptyState"
|
|
:layout="{ type: 'grid', width: '900px' }"
|
|
>
|
|
<!-- Default Story -->
|
|
<Variant title="Default">
|
|
<ContactEmptyState
|
|
title="No contacts found"
|
|
subtitle="Create your first contact to get started"
|
|
button-label="Add Contact"
|
|
/>
|
|
</Variant>
|
|
|
|
<!-- Without Button -->
|
|
<Variant title="Without Button">
|
|
<ContactEmptyState
|
|
title="No contacts"
|
|
subtitle="These are your current contacts"
|
|
:show-button="false"
|
|
/>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|