Add size animation to dots, move stories to component folder

This commit is contained in:
Vadim
2021-01-22 14:54:17 +03:00
parent 78c39bf7f1
commit 99f6c2d488
9 changed files with 95 additions and 28 deletions

View File

@@ -0,0 +1,13 @@
import ImageCarouselView from './ImageCarouselView.svelte';
export default {
title: 'ImageCarousel',
component: ImageCarouselView
};
const Template = ({ ...args }) => ({
Component: ImageCarouselView,
props: args
});
export const Primary = Template.bind({});