Skip to content

Commit

Permalink
Fix @types/react issue :( DefinitelyTyped/DefinitelyTyped#17288
Browse files Browse the repository at this point in the history
  • Loading branch information
iconix committed Aug 16, 2017
1 parent d0c670d commit 24f7938
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dependencies": {
"@types/googlemaps": "^3.25.38",
"@types/node": "^6.0.52",
"@types/react": "^0.14.49",
"@types/react": "^15.0.33",
"@types/react-dom": "^0.14.18",
"@types/react-router": "^2.0.41",
"@types/winston": "^2.3.3",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/components/scene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface SceneProps {
}

export class Scene extends React.Component<SceneProps, SceneState> {
constructor(props: {}) {
constructor(props: SceneProps) {
super(props);
this.state = {
stage: Stage.Type.BattleStart,
Expand Down

0 comments on commit 24f7938

Please sign in to comment.