PmsSelect.tsx 251 Bytes
import React from 'react';
import {Select} from 'antd';
import type { SelectProps } from 'antd';

export default function Index(props: SelectProps) {
  return (
    <Select
      {...props}
      showSearch
      optionFilterProp="label"
    />
  );
}