Hope my question is clear, I'm basically looking for a way to dynamically attach attributes to JSX input.
<input type="text" {variableAttribute}={anotherVariable} />
Is it possible like this without overriding how JSX compiles JS into plain HTML?
source
share