TypeScript/tests/cases/compiler/jsxMultilineAttributeValuesReact.tsx

12 lines
187 B
TypeScript

// @jsx: react
declare var React: any;
const a = <input value="
foo: 23
"></input>;
const b = <input value='
foo: 23
'></input>;
const c = <input value='
foo: 23\n
'></input>;