ant-design/components/radio/__tests__/demo.test.tsx
lijianan ea8ed28209
chore: unified import method (#42149)
* chore: unified import method

* fix lint
2023-05-05 20:52:44 +08:00

23 lines
354 B
TypeScript

import 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',
},
);