import React from "react"; import { View, ViewProps } from "react-native"; export interface CellContainerProps extends ViewProps { index: number; } const CellContainer = React.forwardRef( (props: CellContainerProps, ref: any) => { return ; } ); CellContainer.displayName = "CellContainer"; export default CellContainer;