mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
97269a37b9
swc: - Respect `react` config. swc_ecma_transforms_compat: - `export-namespace-from`: Preserve `use strict`. (#1423) swc_ecma_transforms_module: - Inject `use strict` before imports. (#1423) swc_ecma_transforms_proposal: - Emit metadata for literal types. (#1421)
8 lines
85 B
TypeScript
8 lines
85 B
TypeScript
export const App = () => {
|
|
return (
|
|
<div>
|
|
<Foo></Foo>
|
|
</div>
|
|
);
|
|
};
|