auto-loading completely done

This commit is contained in:
Sriram Hariharan
2023-03-05 14:34:26 -06:00
parent 2b952d0591
commit 0956525e94
13 changed files with 248 additions and 53 deletions

View File

@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import ReactDOM from 'react-dom';
import { Course, CourseRow } from 'src/shared/types/Course';
import { Course, ScrapedRow } from 'src/shared/types/Course';
import { SiteSupport } from 'src/views/lib/getSiteSupport';
import { Button } from '../../common/Button/Button';
import styles from './TableRow.module.scss';
@@ -18,7 +18,6 @@ interface Props {
* @returns a react portal to the new td in the column or null if the column has not been created yet.
*/
export default function TableRow({ support, course, element, isSelected, onClick }: Props): JSX.Element | null {
console.log('TableRow -> isSelected:', isSelected);
const [container, setContainer] = useState<HTMLTableCellElement | null>(null);
useEffect(() => {