chore: use export function instead of React.FC

This commit is contained in:
knownotunknown
2024-02-17 12:09:01 -06:00
committed by doprz
parent 56306ab944
commit 64fa12b10c
2 changed files with 43 additions and 35 deletions

View File

@@ -2,6 +2,7 @@ import React from 'react';
import { DAY_MAP } from 'src/shared/types/CourseMeeting';
import styles from './CalendarGrid.module.scss';
import CalendarCell from '../CalendarGridCell/CalendarGridCell';
import { CourseMeeting } from 'src/shared/types/CourseMeeting';
const daysOfWeek = Object.keys(DAY_MAP).filter(key => !['S', 'SU'].includes(key));
const hoursOfDay = Array.from({ length: 14 }, (_, index) => index + 8);
@@ -20,11 +21,17 @@ for (let i = 0; i < 13; i++) {
grid.push(row);
}
interface Props {
CourseMeetingBlocks: CourseMeeting[];
}
/**
* Grid of CalendarGridCell components forming the user's course schedule calendar view
* @param props
*/
const Calendar: React.FC = props => (
export function Calendar({ CourseMeetingBlocks }: React.PropsWithChildren<Props>): JSX.Element {
return (
<div className={styles.calendar}>
<div className={styles.dayLabelContainer} />
{/* Displaying the rest of the calendar */}
@@ -51,6 +58,7 @@ const Calendar: React.FC = props => (
</div>
</div>
</div>
);
);
export default Calendar;

View File

@@ -1,8 +1,7 @@
import React from 'react';
import Text from '../Text/Text';
export const flags = ["WR", "QR", "GC", "CD", "E", "II"]
export const flags = ['WR', 'QR', 'GC', 'CD', 'E', 'II'];
interface Props {
label: string;
@@ -12,15 +11,16 @@ interface Props {
* A reusable chip component that follows the design system of the extension.
* @returns
*/
export function Chip({
label
}: React.PropsWithChildren<Props>): JSX.Element {
export function Chip({ label }: React.PropsWithChildren<Props>): JSX.Element {
return (
<Text as = 'div' variant = 'h4'
className="min-w-5 inline-flex items-center justify-center gap-2.5 rounded-lg px-1 py-0.5"
<Text
as='div'
variant='h4'
className='min-w-5 inline-flex items-center justify-center gap-2.5 rounded-lg px-1 py-0.5'
style={{
backgroundColor: "#FFD600"
}}>
backgroundColor: '#FFD600',
}}
>
{label}
</Text>
);