What is the correct way to import a React component?

You’ve got your imports/exports mixed up.

Get rid of the parenthesis here:
export default HeaderPicker();

And the curly braces here:
import { HeaderPicker } from "./HeaderPicker

1 Like