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
If I have page that mixed both JSX script (which use JSXTransformer.js) and JS script then JSX script get loaded after JS script.
So if I have
<script type="text/jsx" src="component.jsx"></script> <script src="app.js"></script>
Then I cannot refer to React classes created inside component.jsx in app.js. My workaround is to rename app.js to app.jsx.
JSXTransformer should have some kind of even callback that is called when jsx all script is loaded and ready to be used.
The text was updated successfully, but these errors were encountered:
See #1913
Sorry, something went wrong.
No branches or pull requests
If I have page that mixed both JSX script (which use JSXTransformer.js) and JS script then JSX script get loaded after JS script.
So if I have
Then I cannot refer to React classes created inside component.jsx in app.js. My workaround is to rename app.js to app.jsx.
JSXTransformer should have some kind of even callback that is called when jsx all script is loaded and ready to be used.
The text was updated successfully, but these errors were encountered: