blob: caf729d4ef6bc96fd8d8d82b5ece187a70a84164 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`RadioGroup RadioGroup - basic rendering 1`] = `
<div
className="sdc-radio-group "
data-test-id="grp1"
>
<label
className="sdc-radio-group__legend"
>
Group A
</label>
<div
className="sdc-radio-group__radios"
>
<div
className="sdc-radio "
>
<label>
<input
checked={true}
className="sdc-radio__input"
data-test-id="grp1_1"
disabled={undefined}
name="grp1"
onChange={[Function]}
type="radio"
value="1"
/>
<span
className="sdc-radio__label"
>
option 1
</span>
</label>
</div>
<div
className="sdc-radio "
>
<label>
<input
checked={false}
className="sdc-radio__input"
data-test-id="grp1_2"
disabled={undefined}
name="grp1"
onChange={[Function]}
type="radio"
value="2"
/>
<span
className="sdc-radio__label"
>
option 2
</span>
</label>
</div>
</div>
</div>
`;
|