Skip to content
This repository was archived by the owner on Feb 4, 2021. It is now read-only.

Commit 3bee529

Browse files
committed
Merge pull request #17 from zoontek/master
Add missing semicolons
2 parents fe01450 + f137c9b commit 3bee529

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/Drawer/Section.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default class Section extends Component {
4747
}
4848
</View>
4949
);
50-
}
50+
};
5151

5252
render() {
5353
const { theme, title, items } = this.props;

lib/polyfill/Ripple.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default class Ripple extends Component {
3939

4040
componentWillUnmount = () => {
4141
clearTimeout(this.timeout);
42-
}
42+
};
4343

4444
render() {
4545
const { rippleColor, children, style } = this.props;
@@ -144,7 +144,7 @@ export default class Ripple extends Component {
144144
location: { pageX, pageY }
145145
}, next);
146146
})
147-
}
147+
};
148148

149149
}
150150

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-material-design",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "React Native Material Design Components",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)