import { DatePicker, Select } from "antd"; import React from "react"; const SelectAndTime = () => { const onChange: any["onChange"] = (date: any, dateString: any) => { // console.log(date, dateString); }; const onChangeSearch = (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()); return (