import { useNavigate } from 'react-router-dom' import { useRef, useEffect, useState } from 'react' import { Row, Col, Divider, Table , Card, Button, Input, Space, Empty, Radio, AutoComplete, DatePicker, Spin, List, Avatar } from 'antd' import { StarFilled, ZoomInOutlined, StarOutlined, SearchOutlined } from '@ant-design/icons' const { Search } = Input; const { RangePicker } = DatePicker; const data = [ { title: 'Samantha Mohammed', content: 'Travel by Japan' }, { title: 'Margarita', content: 'Hello! This a a big trip for our family of 16 people (ages ranging from 1- adults)' }, { title: 'Vishnu', content: 'FIRST TIME TRAVEL TO VIETNAM AND CAMBODIA WITHH STAY IN A CRUISING SHIP FOR 2 NIGHTS.' }, { title: 'Hailey', content: 'Disregard my first email- I was using Siri and didn\'t realize all the typos. ' }, ]; function ChatHistory() { useEffect(() => { }, []) return ( { setKeyword(value) }} filterOption={(inputValue, option) => option.value.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1 } /> ( } title={{item.title}} description={item.content} /> )} /> ) } export default ChatHistory