Fix whitespace

This commit is contained in:
Tanner Collin 2017-02-01 23:44:21 -07:00
parent 7f6fc32d74
commit 367ec26e79
11 changed files with 156 additions and 165 deletions

View File

@ -1,4 +1,3 @@
[android]
target = Google Inc.:Google APIs:23

View File

@ -78,7 +78,8 @@ class Resistor extends Component {
<Picker.Item label=" Ω" value="1" />
<Picker.Item label=" mΩ" value="0.001" />
</Picker>
<TouchableOpacity onPress={() => {
<TouchableOpacity
onPress={() => {
console.log(this);
Alert.alert(
'Clear resistor value?',
@ -93,7 +94,8 @@ class Resistor extends Component {
{text: 'OK', onPress: clear},
]
)
}} style={styles.clearbutton} activeOpacity={1}
}}
style={styles.clearbutton} activeOpacity={1}
>
<Text>Clear</Text>
</TouchableOpacity>

View File

@ -13,15 +13,11 @@ class HelpApp extends Component {
render() {
const { state, actions } = this.props;
return (
<Help
{...actions} />
<Help {...actions} />
);
}
}
export default connect(state => ({
}),
(dispatch) => ({
})
)(HelpApp);
}), (dispatch) => ({
}))(HelpApp);

View File

@ -21,10 +21,8 @@ class MenuApp extends Component {
export default connect(state => ({
state: state
}),
(dispatch) => ({
}), (dispatch) => ({
actions: bindActionCreators(menuActions, dispatch)
})
)(MenuApp);
}))(MenuApp);

View File

@ -61,10 +61,6 @@ class Nav extends Component {
export default connect(state => ({
state: state.menu
}),
(dispatch) => ({
}), (dispatch) => ({
actions: bindActionCreators(menuActions, dispatch)
})
)(Nav);
}))(Nav);