We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm not using a default export for my components. Is there a way to generate documentation omitting this rule?
The text was updated successfully, but these errors were encountered:
My Component
/** * * @component */ const SelectOption = () => { return ( <> ... </> ) } export {SelectOption}
The error:
Error: Command failed: NODE_ENV=development parcel build docs/entry.js --dist-dir docs/build @parcel/core: src/SelectOption.tsx does not export 'default' /Users/mac/react-proyect/docs/entry.js:25:10 24 | > 25 | import Component0 from '../src/SelectOption.tsx'; > | ^^^^^^^^^^ 26 | reactComponents['SelectOption'] = Component0;
Sorry, something went wrong.
Having the same issue here, any help would be appreciated.
Same here, any ideas?
No branches or pull requests
I'm not using a default export for my components.
Is there a way to generate documentation omitting this rule?
The text was updated successfully, but these errors were encountered: