import React, { Component } from 'react'; // import sharedStyles from './shared-styles'; // import { // Platform, // StyleSheet, // Image, // ListView, // Text, // ScrollView, // TextInput, // TouchableHighlight, // View // } from 'react-native'; export default class CapturedArea { constructor(userID, coordinates, strokeColor, fillColor, area) { this.userID = userID; this.coordinates = coordinates; this.strokeColor = strokeColor; this.fillColor = fillColor; this.area = area; } }