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
How do I handle inline styling? currently something like
<div style{{background:"black"}}></div>
gets converted to
<div style></div>
The text was updated successfully, but these errors were encountered:
change function: updateDom add this code
const styleObj = newProps.style || {} Object.keys(styleObj).forEach((key) => (dom.style[key] = styleObj[key]))
and change function : isProperty const isProperty = (key) => key !== 'children' && !isEvent(key) && key !== 'style'
Sorry, something went wrong.
No branches or pull requests
How do I handle inline styling?
currently something like
gets converted to
The text was updated successfully, but these errors were encountered: