chore(form): add stories for Form, FormItem, FormLabel

This commit is contained in:
Eric Liu 2019-12-30 16:14:16 -08:00
commit f366b7b948
18 changed files with 152 additions and 22 deletions

View file

@ -0,0 +1,11 @@
<script>
import Layout from '../../internal/ui/Layout.svelte';
import NumberInput from '../NumberInput';
import FormItem from './FormItem.svelte';
</script>
<Layout>
<FormItem>
<NumberInput id="number-input-1" />
</FormItem>
</Layout>