mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
```js
|
|
// CSF 3 - explicit render function
|
|
|
|
// Other imports and story implementation
|
|
export const Default = {
|
|
render: (args) => ({
|
|
Component: Button,
|
|
props: args,
|
|
});
|
|
};
|
|
```
|