swc/crates/swc_ecma_parser/tests/tsc/tsxReactEmitWhitespace2.tsx
2022-02-04 17:08:38 +09:00

18 lines
323 B
TypeScript

//@filename: file.tsx
//@jsx: react
declare module JSX {
interface Element { }
interface IntrinsicElements {
[s: string]: any;
}
}
declare var React: any;
// Emit ' word' in the last string
<div>word <code>code</code> word</div>;
// Same here
<div><code>code</code> word</div>;
// And here
<div><code /> word</div>;