feat: calendar components 3rd attempt at merging (#60)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user