meganrogge/template-string-converter

`addBracketsToProps` adds additional brackets when they already exist

Opened this issue · 0 comments

    <Foo
      bar={`baz${}$`}
    >

When the curly is typed after the $ above, this is the result:

    <Foo
      bar={{`baz${}${}`}}
    >