mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-12 11:55:23 +08:00
eb9e19be1f
* refactor: simplify Radio's code * feat: make Checkbox work in Checkbox.Group, close: #5645 * test: add snapshot
23 lines
337 B
Plaintext
23 lines
337 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Radio should render correctly 1`] = `
|
|
<label
|
|
class="customized ant-radio-wrapper"
|
|
>
|
|
<span
|
|
class="ant-radio"
|
|
>
|
|
<input
|
|
class="ant-radio-input"
|
|
type="radio"
|
|
/>
|
|
<span
|
|
class="ant-radio-inner"
|
|
/>
|
|
</span>
|
|
<span>
|
|
Test
|
|
</span>
|
|
</label>
|
|
`;
|