feat: calendar components 3rd attempt at merging (#60)

This commit is contained in:
doprz
2024-03-06 10:24:27 -06:00
parent 4455b10cc7
commit 4faca8c43b
6 changed files with 21105 additions and 46 deletions

View File

@@ -1,12 +1,16 @@
import React from 'react';
import styles from './CalendarGridCell.module.scss';
const CalendarCell: React.FC = () => {
return (
<div className={styles['calendar-cell']}>
<div className={styles['hour-line']}></div>
</div>
);
/**
* 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;