mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 06:49:32 +08:00
966e5a770f
Without this typescript will not compile Signed-off-by: Isaac Batista <isaacbatst@gmail.com>
42 lines
857 B
TypeScript
42 lines
857 B
TypeScript
import React from 'react';
|
|
import { Select } from 'antd';
|
|
|
|
const onChange = (value: string) => {
|
|
console.log(`selected ${value}`);
|
|
};
|
|
|
|
const onSearch = (value: string) => {
|
|
console.log('search:', value);
|
|
};
|
|
|
|
// Filter `option.label` match the user type `input`
|
|
const filterOption = (input: string, option?: { label: string; value: string }) =>
|
|
(option?.label ?? '').toLowerCase().includes(input.toLowerCase());
|
|
|
|
const App: React.FC = () => (
|
|
<Select
|
|
showSearch
|
|
placeholder="Select a person"
|
|
optionFilterProp="children"
|
|
onChange={onChange}
|
|
onSearch={onSearch}
|
|
filterOption={filterOption}
|
|
options={[
|
|
{
|
|
value: 'jack',
|
|
label: 'Jack',
|
|
},
|
|
{
|
|
value: 'lucy',
|
|
label: 'Lucy',
|
|
},
|
|
{
|
|
value: 'tom',
|
|
label: 'Tom',
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
|
|
export default App;
|