Norbert de Langen 5d9a1c811f
remove dev script
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
2022-01-26 14:12:34 +01:00

7 lines
141 B
Svelte

<script>
export let storyFn;
let { Component: component, props } = storyFn();
</script>
<svelte:component this={component} {...props}/>