TypeScript/tests/cases/conformance/jsx/tsxParseTests1.tsx

9 lines
194 B
TypeScript
Raw Normal View History

2015-06-18 23:03:43 +02:00
//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements { div; span; }
}
var x = <div><div><span><div></div></span></div></div>;