Skip to content

Commit

Permalink
#12 Remove unused component state
Browse files Browse the repository at this point in the history
  • Loading branch information
tscz committed Jan 10, 2020
1 parent 8b35b93 commit a937cbc
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/components/app/app.tsx
Expand Up @@ -50,15 +50,7 @@ interface Props extends WithStyles<typeof stylesForApp> {

type AllProps = Props & PropsFromState & PropsFromDispatch;

interface State {
open: boolean;
}

class App extends React.Component<AllProps, State> {
state: State = {
open: false
};

class App extends React.Component<AllProps> {
render() {
Log.info("render", App.name);
return (
Expand Down

0 comments on commit a937cbc

Please sign in to comment.