Ultra-minimal React starter showing how to add the Filefeed importer in minutes.
- Install dependencies
npm install- Start the dev server
npm start- Try the importer
- Click "Open Importer" and drop
getting-started.csv. - You can also use the "Download sample CSV" link in the UI.
- Edit fields in
src/FilefeedImporter.tsx(sheetConfig.fields). - Handle submission in
onSubmitofFilefeedSheet.
// src/App.tsx
import FilefeedImporter from './FilefeedImporter';
export default function App() {
return <FilefeedImporter />;
}