Skip to content

Commit

Permalink
feat: remove unused state from <Ripple>
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Feb 20, 2018
1 parent 9665542 commit a549d2e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/Ripple/index.ts
Expand Up @@ -24,8 +24,6 @@ export interface IRippleProps {
}

export interface IRippleState {
x: number;
y: number;
}

export class Ripple extends Component<IRippleProps, IRippleState> {
Expand All @@ -34,11 +32,6 @@ export class Ripple extends Component<IRippleProps, IRippleState> {
ms: 400
};

state: IRippleState = {
x: 0,
y: 0
};

el: HTMLElement = null;
elRipple: HTMLDivElement = null;

Expand Down

0 comments on commit a549d2e

Please sign in to comment.