storybook/docs/snippets/angular/list-story-starter.ts.mdx

16 lines
227 B
Plaintext

```ts
// List.stories.ts
import List from './list.component';
export default {
title: 'List',
component: List,
};
// Always an empty list, not super interesting
const Template = (args: List) => ({
props: args,
});
```