mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 06:49:32 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
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',
|
|
},
|
|
);
|