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 noticed the following warning in the console log when running a JupyterChart:
JupyterChart
widget.js:118 [anywidget] Deprecation Warning. Direct export of a 'render' will likely be deprecated in the future. To migrate ... Remove the 'export' keyword from 'render' ----------------------------------------- export function render({ model, el }) { ... } ^^^^^^ Create a default export that returns an object with 'render' ------------------------------------------------------------ function render({ model, el }) { ... } ^^^^^^ export default { render } ^^^^^^
To learn more, please see: manzt/anywidget#395
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I noticed the following warning in the console log when running a
JupyterChart
:To learn more, please see: manzt/anywidget#395
The text was updated successfully, but these errors were encountered: