```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: `hello`, }), }; ```