Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempted import error: 'react-papaparse' does not contain a default export (imported as 'readRemoteFile'). #101

Open
eliotstock opened this issue Oct 28, 2021 · 1 comment
Assignees

Comments

@eliotstock
Copy link

Steps to repro:

Create a Create React App (CRA) project
npm install react-papaparse --save
In App.tsx:

import readRemoteFile from 'react-papaparse'
...
readRemoteFile('/foo.csv', {
        worker: true,
        step: (results) => {
          console.log('Row:', results.data)
        }
      })

npm start
Error in browser: Attempted import error: 'react-papaparse' does not contain a default export (imported as 'readRemoteFile').

@Bunlong
Copy link
Owner

Bunlong commented Nov 5, 2021

@eliotstock

Please try the following importing.

import { readRemoteFile  } from 'react-papaparse'

Thanks!

@Bunlong Bunlong self-assigned this Nov 5, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants