From 3b9d2f480a3e7ba0b08fed03b095c24a63d6cc2d Mon Sep 17 00:00:00 2001 From: Eunseo Sim <55528304+simeunseo@users.noreply.github.com> Date: Sat, 9 Nov 2024 21:32:01 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20error=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/ErrorExample.tsx | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 apps/web/src/ErrorExample.tsx diff --git a/apps/web/src/ErrorExample.tsx b/apps/web/src/ErrorExample.tsx deleted file mode 100644 index b9a0ccf6..00000000 --- a/apps/web/src/ErrorExample.tsx +++ /dev/null @@ -1,25 +0,0 @@ -// src/components/ErrorExample.tsx - -import React, { useState } from 'react'; - -// lint 에러 발생: 사용하지 않는 import -import { Button } from './Button'; - -// TypeScript 에러 발생: 타입 정의 누락 -export const ErrorExample = (props) => { - // lint 에러 발생: 선언했지만 사용하지 않는 상태 - const [count, setCount] = useState(0); - - // TypeScript 에러 발생: 타입 불일치 - const handleClick = (event: number) => { - console.log(event); - }; - - // lint 에러 발생: - // - console.log 사용 - // - 불필요한 세미콜론 사용 (eslint 설정에 따라) - console.log('rendering'); - - // TypeScript 에러 발생: children의 타입이 지정되지 않음 - return