import { StyleSheet } from "react-native";

export const styles = StyleSheet.create({
  cellWrapper: {
    flex: 0,
    height: "100%",
  },
  baseCell: {
    height: "100%",
    display: "flex",
    flex: 1,
  },
  touchableCell: {
    flex: 1,
    height: "100%",
  },
});
