We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19e84f8 + da2df54 commit 792c8d2Copy full SHA for 792c8d2
packages/docs/src/pages/components/forms.mdx
@@ -27,12 +27,14 @@ import {
27
<Label htmlFor='username'>Username</Label>
28
<Input
29
name='username'
30
+ id='username'
31
mb={3}
32
/>
33
<Label htmlFor='password'>Password</Label>
34
35
type='password'
36
name='password'
37
+ id='password'
38
39
40
<Box>
@@ -42,14 +44,15 @@ import {
42
44
</Label>
43
45
</Box>
46
<Label htmlFor='sound'>Sound</Label>
- <Select name='sound' mb={3}>
47
+ <Select name='sound' id='sound' mb={3}>
48
<option>Beep</option>
49
<option>Boop</option>
50
<option>Blip</option>
51
</Select>
52
<Label htmlFor='comment'>Comment</Label>
53
<Textarea
54
name='comment'
55
+ id='comment'
56
rows='6'
57
58
0 commit comments