Skip to content

Commit 6240fbf

Browse files
committed
missing semi colon
1 parent a9b3c30 commit 6240fbf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default class PickerAny extends React.Component {
3434
selectedValue: PropTypes.any.isRequired,
3535
onPickerDone: PropTypes.func,
3636
onPickerCancel: PropTypes.func
37-
}
37+
};
3838

3939
static defaultProps = {
4040
pickerBtnText: '完成',
@@ -43,7 +43,7 @@ export default class PickerAny extends React.Component {
4343
showDuration: 300,
4444
onPickerDone: ()=>{},
4545
onPickerCancel: ()=>{}
46-
}
46+
};
4747

4848
constructor(props, context){
4949
super(props, context);

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-picker",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "react-native-picker",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)