storybook/docs/snippets/react/csf-3-example-render.ts.mdx
2023-01-06 19:15:31 +00:00

9 lines
166 B
Plaintext

```ts
// CSF 3 - explicit render function
// Other imports and story implementation
export const Default: Story = {
render: (args) => <Button {...args} />,
};
```