12 lines
185 B
Vue
12 lines
185 B
Vue
<script setup lang="ts">
|
|
import reminders from './reminders.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Story>
|
|
<Variant title="Default">
|
|
<reminders />
|
|
</Variant>
|
|
</Story>
|
|
</template>
|