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
react-dj/src/Components/ButtonAppBar.js
Line 29 in 6228156
Hi Ross,
Please see this issue. If you export a class on the same line you will loose information in the react developer tools.
facebook/react-devtools#1307
Advised not to do
export default class Named { }
Doing this in two parts resolves the lost information issue.
class Named { } export default Named;
The text was updated successfully, but these errors were encountered:
Same is applicable to
export default function Named() {}
export const Named = () => {}
Sorry, something went wrong.
No branches or pull requests
react-dj/src/Components/ButtonAppBar.js
Line 29 in 6228156
Hi Ross,
Please see this issue. If you export a class on the same line you will loose information in the react developer tools.
facebook/react-devtools#1307
Advised not to do
Doing this in two parts resolves the lost information issue.
facebook/react-devtools#1307
The text was updated successfully, but these errors were encountered: