KindeProvider in react version 5.0.x cannot be imported
When importing, I get
Warning: React.jsx: 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.
Check your code at App.js:300.
with import code:
import { KindeProvider } from '@kinde-oss/kinde-auth-react';
It works with 4.0.5, but there is no documentation for that.
What am I doing wrong?
Warning: React.jsx: 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.
Check your code at App.js:300.
with import code:
import { KindeProvider } from '@kinde-oss/kinde-auth-react';
It works with 4.0.5, but there is no documentation for that.
What am I doing wrong?