Files
UT-Registration-Plus/src/views/components/common/CalendarGridCell/CalendarGridCell.tsx
2024-03-07 17:53:13 -06:00

16 lines
341 B
TypeScript

import React from 'react';
import styles from './CalendarGridCell.module.scss';
/**
* Component representing each 1 hour time block of a calendar
* @param props
*/
const CalendarCell: React.FC = props => (
<div className={styles.calendarCell}>
<div className={styles.hourLine} />
</div>
);
export default CalendarCell;