aotds-docks/src/components/Section/index.svelte

9 lines
107 B
Svelte
Raw Normal View History

2020-07-19 20:21:28 +00:00
<fieldset>
<legend>{label}</legend>
<slot />
</fieldset>
<script>
export let label;
</script>