|
- import {howToListData} from "./HowToListData";
- import {createHowToList} from "./HowToListComponent";
-
- export default {
- title: 'Components/Howto-Liste',
- argTypes: {
- listItems: {
- name: 'listItems',
- control: {type: 'object'},
- defaultValue: howToListData,
- }
- }
- }
- const Template = ({...args}) => {
- return createHowToList({...args});
- }
-
- export const HowToList = Template.bind({});
- HowToList.args = {};
|