Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
React.Component -> Component
  • Loading branch information
tkrotoff committed Jan 11, 2017
1 parent cb33466 commit 44ea13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ts/compile-ts.tsx
Expand Up @@ -102,7 +102,7 @@ class T15 extends Component<{ pizza: number, x?: number }, {}> {
}
const T16 = inject(() => ({ x: 3 }))(T15);

class T17 extends React.Component<{}, {}> {
class T17 extends Component<{}, {}> {
render() {
return <div>
<T11 pizza={3} x={1} />
Expand Down

0 comments on commit 44ea13d

Please sign in to comment.