E.g. @{user.name}
all @{...} are always JSXCodeBlocks, if there is only one statement (non-jsx), show a warning that the it's a code block and they need to use it as a string, e.g. as a string interpolation, e.g.
{`@${user.name}`}
// or
{'@' + user.name}
E.g.
@{user.name}all
@{...}are always JSXCodeBlocks, if there is only one statement (non-jsx), show a warning that the it's a code block and they need to use it as a string, e.g. as a string interpolation, e.g.