mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
24 lines
503 B
TypeScript
24 lines
503 B
TypeScript
import * as React from 'react';
|
|
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('input', {
|
|
skip: ['component-token.tsx'],
|
|
});
|
|
|
|
rootPropsTest(
|
|
'input',
|
|
(Input, props) => <Input addonBefore="Bamboo" addonAfter="Light" {...props} />,
|
|
{
|
|
name: 'addon',
|
|
},
|
|
);
|
|
|
|
rootPropsTest('input', (Input, props) => <Input.Password {...props} />, {
|
|
name: 'password',
|
|
});
|
|
|
|
rootPropsTest('input', (Input, props) => <Input.TextArea {...props} />, {
|
|
name: 'textarea',
|
|
});
|