mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import React from 'react';
|
|
import { Flex, Transfer } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Flex gap="middle" vertical>
|
|
<Transfer status="error" />
|
|
<Transfer status="warning" showSearch />
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|