TypeScript/tests/cases/compiler/tsxNoTypeAnnotatedSFC.tsx
Wesley Wigham 51d44b6097
Move JSX props support check and make syntactic (#22970)
* Move JSX props support check and make syntactic

* Make parameter required
2018-03-29 12:36:42 -07:00

9 lines
237 B
TypeScript

// @jsx: preserve
// not _actually_ making react available in this test to regression test #22948
import * as React from 'react';
const Test123 = () => <div/>;
function testComponent(props) {
return <Test123 {...props}/>;
}