// @jsx: preserve declare namespace JSX { interface Element { } interface IntrinsicElements { div: { text?: string; } } } // didn't work
{() =>
}
; // didn't work
{x =>
}
; // worked
{() => (
)}
; // worked (!)
{() =>
}
;