mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 17:19:11 +08:00
80 lines
1.6 KiB
TypeScript
80 lines
1.6 KiB
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { SmileOutlined } from '@ant-design/icons';
|
||
|
import {
|
||
|
Cascader,
|
||
|
ConfigProvider,
|
||
|
Divider,
|
||
|
List,
|
||
|
Select,
|
||
|
Switch,
|
||
|
Table,
|
||
|
Transfer,
|
||
|
TreeSelect,
|
||
|
} from 'antd';
|
||
|
|
||
|
const customizeRenderEmpty = () => (
|
||
|
<div style={{ textAlign: 'center' }}>
|
||
|
<SmileOutlined style={{ fontSize: 20 }} />
|
||
|
<p>Data Not Found</p>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
const style = { width: 200 };
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [customize, setCustomize] = useState(false);
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<Switch
|
||
|
unCheckedChildren="default"
|
||
|
checkedChildren="customize"
|
||
|
checked={customize}
|
||
|
onChange={val => {
|
||
|
setCustomize(val);
|
||
|
}}
|
||
|
/>
|
||
|
|
||
|
<Divider />
|
||
|
|
||
|
<ConfigProvider renderEmpty={customize ? customizeRenderEmpty : undefined}>
|
||
|
<div className="config-provider">
|
||
|
<h4>Select</h4>
|
||
|
<Select style={style} />
|
||
|
|
||
|
<h4>TreeSelect</h4>
|
||
|
<TreeSelect style={style} treeData={[]} />
|
||
|
|
||
|
<h4>Cascader</h4>
|
||
|
<Cascader style={style} options={[]} showSearch />
|
||
|
|
||
|
<h4>Transfer</h4>
|
||
|
<Transfer />
|
||
|
|
||
|
<h4>Table</h4>
|
||
|
<Table
|
||
|
style={{ marginTop: 8 }}
|
||
|
columns={[
|
||
|
{
|
||
|
title: 'Name',
|
||
|
dataIndex: 'name',
|
||
|
key: 'name',
|
||
|
},
|
||
|
{
|
||
|
title: 'Age',
|
||
|
dataIndex: 'age',
|
||
|
key: 'age',
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
|
||
|
<h4>List</h4>
|
||
|
<List />
|
||
|
</div>
|
||
|
</ConfigProvider>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|