npm install hello-csvimport Importer from 'hello-csv/preact';import 'hello-csv/preact/index.css'; export function CsvUpload() { return ( <Importer sheets={[ { id: 'employees', label: 'Employees', columns: [ { label: 'Name', id: 'name', type: 'string', validators: [{ validate: 'required' }], }, { label: 'Email', id: 'email', type: 'string', validators: [{ validate: 'required' }], }, ], }, ]} onComplete={(data) => { console.log(data); }} /> );}