fix: 불필요한 주석 삭제

This commit is contained in:
정기영 2024-08-02 11:36:06 +09:00
parent 1d0cc39f4c
commit 715bb2d042
2 changed files with 0 additions and 3 deletions

View File

@ -3,8 +3,6 @@ import { Link } from 'react-router-dom';
import styles from './QuizsetDetail.module.css';
export default function QuizsetDetail({ topic, title }) {
// TODO:
return (
<div className={styles.quizsetDetail}>
<header className={styles.header}>

View File

@ -1,6 +1,5 @@
import { useQuizsetDetail } from '../../hooks/api/useQuizsetDetail';
import { useParams } from 'react-router-dom';
// import useBoundStore from '../../store';
import { QuizsetDetail } from '../../components/QuizsetDetail';
export default function QuizsetListPage() {