File size: 360 Bytes
0ad74ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
	import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
	import Audio from "./Example.svelte";
</script>

<Meta title="Components/Audio/Example" component={Audio} />

<Template let:args>
	<Audio {...args} />
</Template>

<Story
	name="Audio file"
	args={{
		value: "cantina.mp3"
	}}
/>

<Story
	name="Null"
	args={{
		value: null
	}}
/>