import React, { useState } from 'react'; import { Input } from 'antd'; import { SearchOutlined } from '@ant-design/icons'; const ExpandSearchBox = ({ onSearch, placeholder = "搜索会议..." }) => { return ( ); }; export default ExpandSearchBox;