storybook/docs/snippets/angular/list-story-starter.ts.mdx
2020-08-07 17:05:17 +01:00

17 lines
248 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) => ({
component: List,
props: args,
});
```