feat: Calendar Components 3rd Attempt at Merging (#60)

This commit is contained in:
2024-02-03 10:20:30 -06:00
committed by GitHub
parent f5e8fb5782
commit ab2cd688fa
6 changed files with 21185 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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) => {
return (
<div className={styles.calendarCell}>
<div className={styles.hourLine}></div>
</div>
);
};
export default CalendarCell;