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,28 @@
/**
* @flow
*/
import React from 'react';
import { Picker, StyleSheet, View } from 'react-native';
const PickerExample = props => (
<View style={styles.root}>
<Picker {...props}>
<Picker.Item label="Sorcerer's Stone" value="book-1" />
<Picker.Item label="Chamber of Secrets" value="book-2" />
<Picker.Item label="Prisoner of Azkaban" value="book-3" />
<Picker.Item label="Goblet of Fire" value="book-4" />
<Picker.Item label="Order of the Phoenix" value="book-5" />
<Picker.Item label="Half-Blood Prince" value="book-6" />
<Picker.Item label="Deathly Hallows" value="book-7" />
</Picker>
</View>
);
const styles = StyleSheet.create({
root: {
alignItems: 'flex-start'
}
});
export default PickerExample;