mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('checkbox');
|
|
|
|
rootPropsTest(
|
|
'checkbox',
|
|
(Checkbox, props) => <Checkbox.Group {...props} value={[]} options={['Bamboo']} />,
|
|
{
|
|
name: 'Checkbox.Group',
|
|
},
|
|
);
|