mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
28 lines
441 B
TypeScript
28 lines
441 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('space', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest('space', (Space, props) => (
|
||
|
<Space {...props}>
|
||
|
<input />
|
||
|
<input />
|
||
|
</Space>
|
||
|
));
|
||
|
|
||
|
rootPropsTest(
|
||
|
'space',
|
||
|
(Space, props) => (
|
||
|
<Space.Compact {...props}>
|
||
|
<input />
|
||
|
<input />
|
||
|
</Space.Compact>
|
||
|
),
|
||
|
{
|
||
|
name: 'Space.Compact',
|
||
|
},
|
||
|
);
|