TypeScript/tests/cases/compiler/jsxMultilineAttributeStringValues.tsx

8 lines
117 B
TypeScript

// @jsx: preserve
const a = <input value="
foo: 23
"></input>;
const b = <input value='
foo: 23
'></input>;