We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b9f16 commit 283de56Copy full SHA for 283de56
packages/babel-plugin-transform-jsx-to-htm/index.mjs
@@ -51,7 +51,7 @@ export default function jsxToHtmBabelPlugin({ types: t }, options = {}) {
51
52
function expr(value) {
53
expressions.push(value);
54
- quasis.push(t.templateElement({ raw: '', cooked: '' }));
+ quasis.push(t.templateElement({ raw: '', cooked: '' }));
55
}
56
57
function raw(str) {
@@ -199,7 +199,7 @@ export default function jsxToHtmBabelPlugin({ types: t }, options = {}) {
199
let quasisBefore = quasis;
200
let expressionsBefore = expressions;
201
202
- quasis = [t.templateElement({ raw: '', cooked: '' })];
+ quasis = [t.templateElement({ raw: '', cooked: '' })];
203
expressions = [];
204
205
if (isFragment) {
0 commit comments