mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 15:12:08 +03:00
ff2baf75b4
swc_ecma_codegen: - Check for comments deeply while emitting a return statement. swc_ecma_transforms_react: - Fix handling of texts in attributes.
6 lines
108 B
JavaScript
6 lines
108 B
JavaScript
function Component() {
|
|
return(/*#__PURE__*/ React.createElement("div", {
|
|
name: "A B"
|
|
}));
|
|
}
|