import React from 'react'; interface Props { row: number; col: number; } /** * Component representing each 1 hour time block of a calendar * @param props */ function CalendarCell(props: Props): JSX.Element { return (
); } export default CalendarCell;