import React from 'react'; interface Props { row: number; col: number; } /** * Component representing each 1 hour time block of a calendar * * @param row - The row of the cell * @param col - The column of the cell * @returns The CalendarCell component */ function CalendarCell({ row, col }: Props): JSX.Element { return (