// @flow import * as React from 'react'; import {View} from 'react-native'; import {withTheme} from 'react-native-paper'; function Cell(props) { const colors = props.theme.colors; return ( ); } export default withTheme(Cell);