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