mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
```ts
|
|
// CSF 3 - explicit render function
|
|
|
|
// Other imports and story implementation
|
|
export const Default: Story = {
|
|
render: (args) => ({
|
|
props: args,
|
|
}),
|
|
};
|
|
```
|