mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
20 lines
462 B
Vue
20 lines
462 B
Vue
<script setup>
|
|
import AddNewRulesInput from './AddNewRulesInput.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<Story
|
|
title="Captain/Assistant/AddNewRulesInput"
|
|
:layout="{ type: 'grid', width: '800px' }"
|
|
>
|
|
<Variant title="Default">
|
|
<div class="px-6 py-4 bg-n-background">
|
|
<AddNewRulesInput
|
|
placeholder="Type in another response guideline..."
|
|
label="Add and save (↵)"
|
|
/>
|
|
</div>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|