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

Inertia React #375

Open
DeviJv opened this issue Feb 16, 2023 · 1 comment
Open

Inertia React #375

DeviJv opened this issue Feb 16, 2023 · 1 comment

Comments

@DeviJv
Copy link

DeviJv commented Feb 16, 2023

Uncaught Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.

@vitkarpov
Copy link

vitkarpov commented Jun 13, 2023

UPD sorry, it's "Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object." not undefined

Happened to me whilst migrating from vite@3.x to vite@4.x too, most likely because of esbuild.

I found a hack to work around this:

import Tippy from '@tippyjs/react';

const TippyComponent =
    (Tippy as unknown as { default: typeof Tippy }).default ??
    Tippy;

then use <TippyComponent> instead of <Tippy> in the app.

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