mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
7 lines
141 B
Svelte
7 lines
141 B
Svelte
<script>
|
|
export let storyFn;
|
|
|
|
let { Component: component, props } = storyFn();
|
|
</script>
|
|
|
|
<svelte:component this={component} {...props}/> |