mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
14 lines
286 B
TypeScript
14 lines
286 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',
|
|
},
|
|
);
|