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

11 lines
170 B
Plaintext

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