dash-html-components
dash-html-components copied to clipboard
'async' prop of Script with python 3.7
In Python 3.7, setting the async prop of the Script component will not work normally since async is a reserved keyword in Python 3.7.
To get the same functionality, set it as follows:
html.Script(id='hello', **{'async': 'blah'})
We should change async to something else in the future.