Theme data is not exported in a way that clients can get access to it #574
ntechproductsolutions
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
the theme data (e.g.
node_modules/flowbite-react/lib/esm/theme/default.js
) is exported as adefault
then re-exported usingexport * from './theme/default';
Default exports cannot be exported using the wildcard method
I suggest exporting using the syntax:
export default as theme from './theme/default';
Beta Was this translation helpful? Give feedback.
All reactions