jsx-intro icon indicating copy to clipboard operation
jsx-intro copied to clipboard

Intro to using TypeScript with JSX

Results 2 jsx-intro issues
Sort by recently updated
recently updated
newest added

In the "Running the Compiler" step I get an error when compiling ``` tsc -w app.tsx(8,11): error TS2339: Property 'render' does not exist on type 'typeof __React'. ```

In our codebase we cannot turn on the ES6 target, so I believe that we cannot use the ES6 class format that this repo describes. Instead we use React.createClass. Could...