Skip to content

Commit

Permalink
fix: Address linting issues with ClassInfoBox
Browse files Browse the repository at this point in the history
  • Loading branch information
mizlan committed Oct 25, 2023
1 parent 7b32b9b commit f9025dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Class/components/ClassInfoBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import '../../../styles/ClassPage.scss';
interface ClassInfoBoxProps {
title: string;
children: React.ReactNode;
};
}

const ClassInfoBox = function ({
const ClassInfoBox = ({
title,
children,
} : ClassInfoBoxProps) {
} : ClassInfoBoxProps) => {
return (
<div className="class-info-box">
<b className="section-header">{title}</b>
Expand Down

0 comments on commit f9025dd

Please sign in to comment.