mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
28 lines
631 B
TypeScript
28 lines
631 B
TypeScript
import React from 'react';
|
|
import { Select } from 'antd';
|
|
import type { SelectProps } from 'antd';
|
|
|
|
type LabelRender = SelectProps['labelRender'];
|
|
|
|
const options = [
|
|
{ label: 'gold', value: 'gold' },
|
|
{ label: 'lime', value: 'lime' },
|
|
{ label: 'green', value: 'green' },
|
|
{ label: 'cyan', value: 'cyan' },
|
|
];
|
|
|
|
const labelRender: LabelRender = (props) => {
|
|
const { label, value } = props;
|
|
|
|
if (label) {
|
|
return value;
|
|
}
|
|
return <span>No option match</span>;
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Select labelRender={labelRender} defaultValue="1" style={{ width: '100%' }} options={options} />
|
|
);
|
|
|
|
export default App;
|