storybook/docs/snippets/angular/button-story-with-addon-example.ts.mdx
2021-09-03 23:31:04 +01:00

22 lines
362 B
Plaintext

```ts
// Button.stories.ts
import { Button } from './button.component';
export default {
component: Button,
//👇 Creates specific parameters for the story
parameters: {
myAddon: {
data: 'this data is passed to the addon',
},
},
};
export const Basic = {
render: () => ({
template: `<app-button>hello</<app-button>`,
}),
};
```