Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #71 from Stocodi/develop
Browse files Browse the repository at this point in the history
fix: es-lint 배포 오류 해결
  • Loading branch information
toothlessdev authored Jan 19, 2024
2 parents b0b4102 + c57d52e commit bc40b1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/test-page/LectureRedirectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import styles from "./LectureRedirectCard.module.scss";
import { faArrowRight } from "@fortawesome/free-solid-svg-icons";

export interface ILectureRedirectCard {
width: string;
height: string;
width?: string;
height?: string;

imgSrc: string;
label: string;
onClick: React.MouseEventHandler;
onClick?: React.MouseEventHandler;
}

export const LectureRedirectCard: React.FC<ILectureRedirectCard> = ({ width, height, imgSrc, label, onClick }) => {
Expand Down

0 comments on commit bc40b1e

Please sign in to comment.