I want to paste some values copied from excel file and paste into Select input box which form tags. I’ve tried Automatic tokenization but it does not solve the problem.
const handlePaste = (value: string) => {
console.log(`selected ${value}`);
};
const App: React.FC = () => (
<Select
mode="tags"
style={{ width: '100%' }}
placeholder="Tags Mode"
onChange={handlePaste}
options={options}
/>
);
BTW I am using antd.4x