Move 'website' to 'packages/website'

Keep all workspaces in the 'packages' directory.
This commit is contained in:
Nicolas Gallagher
2018-05-22 16:27:33 -07:00
parent b4e3427fea
commit a8e5d43db5
168 changed files with 15 additions and 16 deletions

View File

@@ -0,0 +1,39 @@
/* eslint-disable react/jsx-no-bind */
/**
* @flow
*/
import React from 'react';
import { Switch, TouchableHighlight, View } from 'react-native';
class TouchableWrapperExample extends React.PureComponent {
state = {
on: false
};
render() {
const { on } = this.state;
return (
<View>
<TouchableHighlight onPress={() => {}} style={style} underlayColor="#eee">
<Switch onValueChange={this._handleChange} value={on} />
</TouchableHighlight>
</View>
);
}
_handleChange = value => {
this.setState({ on: value });
};
}
const style = {
alignSelf: 'flex-start',
borderWidth: 1,
borderColor: '#ddd',
paddingHorizontal: 50,
paddingVertical: 20
};
export default TouchableWrapperExample;