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 f80a243 commit 427bd58
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/components/app/app.tsx
Original file line number Diff line number Diff line change
@@ -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 (

0 comments on commit 427bd58

Please sign in to comment.