mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
9 lines
100 B
Svelte
9 lines
100 B
Svelte
<script>
|
|
/**
|
|
* content
|
|
*/
|
|
export let content = '';
|
|
</script>
|
|
|
|
<div>{@html content}></div>
|