ant-design/components/radio/__tests__/demo.test.tsx
2023-05-06 15:49:37 +08:00

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