mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
23 lines
359 B
TypeScript
23 lines
359 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('radio');
|
|
|
|
rootPropsTest(
|
|
'radio',
|
|
(Radio, props) => (
|
|
<Radio.Group
|
|
{...props}
|
|
options={[
|
|
{
|
|
label: 'Bamboo',
|
|
value: 'bamboo',
|
|
},
|
|
]}
|
|
/>
|
|
),
|
|
{
|
|
name: 'Radio.Group',
|
|
},
|
|
);
|