mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
change the watch mode of yarn build to use the prepare script add a --watch flag to prepare script remove the babel --copy-file flag where possible remove noise from prepare improve error reporting from prepare cleanup
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}/> |