Fix code style inconsistencies

This commit is contained in:
SteveSandersonMS
2016-02-24 18:37:47 +00:00
parent c668387dac
commit c1b808f8af
6 changed files with 31 additions and 31 deletions

View File

@@ -4,7 +4,7 @@ interface CounterState {
currentCount: number;
}
export class Counter extends React.Component<void, CounterState> {
export class Counter extends React.Component<any, CounterState> {
constructor() {
super();
this.state = { currentCount: 0 };