```js // List.stories.js import List from './ListComponent.vue'; export default { component: List, title: 'List', }; // Always an empty list, not super interesting const Template = (args, { argTypes }) => ({ components: { List }, props: Object.keys(argTypes), template: '', }); ```