import React from 'react' import { StyleSheet, View, TouchableOpacity, Image, ScrollView, Picker, Text } from 'react-native' export class WorkItem extends React.Component { static styles = StyleSheet.create({ container: { height: '100%', width: '100%', backgroundColor: '#DDDDDD', }, }) constructor(props) { super(props) } render() { return ( Work Item ); } }