The following code: ```rust let a = false; html!(<button disabled=a>"Hey!"</button>); ``` Outputs: ```html <button disabled="false">Hey!</button> ``` When it shouldn't have disabled or output blank string: ```html <button disabled="">Hey!</button> ```
The following code:
Outputs:
When it shouldn't have disabled or output blank string: