Atom package to extend Emmet's JSX expansions to convert string attributes to js props. Forked from iJigg's package. Behavior is slightly altered.
Button[prop=myProp]
, Button[prop="myProp"]
, and Button[prop='myProp']
expand into <Button prop="myProp"></Button>
which is default Emmet behaviorButton[prop={myJSXProp}]
expands into <Button prop={myJSXProp}></Button>
Button[prop=(myJSXProp)]
into <Button prop={myJSXProp}></Button>
Button[arrfunc={(param1, param2, param3) => {expr1; expr2; expr3;}}]
expands into <Button arrfunc={(param1, param2, param3) => {expr1; expr2; expr3;}}></Button>
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.