// @flow import * as React from 'react'; import {View} from 'react-native'; import {withTheme} from 'react-native-paper'; type Props = { color: string, isEmpty: boolean, id: string, } class Cell extends React.PureComponent { colors: Object; constructor(props) { super(props); this.colors = props.theme.colors; } render() { return ( ); } } export default withTheme(Cell);