import React from 'react'; import { DownOutlined } from '@ant-design/icons'; import { Select } from 'antd'; const MAX_COUNT = 3; const App: React.FC = () => { const [value, setValue] = React.useState(['Ava Swift']); const suffix = ( <> {value.length} / {MAX_COUNT} ); return (