From 87bf268e5cb96a2dda9a193bafab46556babb9e5 Mon Sep 17 00:00:00 2001 From: jaemin Date: Thu, 28 Nov 2024 00:15:15 +0900 Subject: [PATCH] remove never used props --- app/presentation/component/article/AboutMe.tsx | 4 +--- app/presentation/component/article/Career.tsx | 4 +--- app/presentation/component/article/Projects.tsx | 4 +--- app/presentation/component/article/SimpleIntroduce.tsx | 4 +--- app/presentation/component/article/Skills.tsx | 4 +--- app/presentation/screen/MainScreen.tsx | 4 +--- 6 files changed, 6 insertions(+), 18 deletions(-) diff --git a/app/presentation/component/article/AboutMe.tsx b/app/presentation/component/article/AboutMe.tsx index 4770ff5..f54ea15 100644 --- a/app/presentation/component/article/AboutMe.tsx +++ b/app/presentation/component/article/AboutMe.tsx @@ -1,9 +1,7 @@ import React from 'react' import ArticleHeader from '../text/ArticleHeader' -type Props = {} - -const AboutMe = (props: Props) => { +const AboutMe = () => { return (
diff --git a/app/presentation/component/article/Career.tsx b/app/presentation/component/article/Career.tsx index 7f5aec2..8ec593f 100644 --- a/app/presentation/component/article/Career.tsx +++ b/app/presentation/component/article/Career.tsx @@ -1,9 +1,7 @@ import React from 'react' import ArticleHeader from '../text/ArticleHeader' -type Props = {} - -const Career = (props: Props) => { +const Career = () => { return (
diff --git a/app/presentation/component/article/Projects.tsx b/app/presentation/component/article/Projects.tsx index ed1488e..7209aa4 100644 --- a/app/presentation/component/article/Projects.tsx +++ b/app/presentation/component/article/Projects.tsx @@ -1,9 +1,7 @@ import React from 'react' import ArticleHeader from '../text/ArticleHeader' -type Props = {} - -const Projects = (props: Props) => { +const Projects = () => { return (
diff --git a/app/presentation/component/article/SimpleIntroduce.tsx b/app/presentation/component/article/SimpleIntroduce.tsx index 0c3dc20..1416930 100644 --- a/app/presentation/component/article/SimpleIntroduce.tsx +++ b/app/presentation/component/article/SimpleIntroduce.tsx @@ -1,9 +1,7 @@ import React from 'react' import ArticleHeader from '../text/ArticleHeader' -type Props = {} - -const SimpleIntroduce = (props: Props) => { +const SimpleIntroduce = () => { const str = `SIM JAE MIN` const str2 = `안녕하세요\n지속적인 성장과 혁신을 추구하는\n열정적인 프론트엔드 개발자\n심재민입니다` diff --git a/app/presentation/component/article/Skills.tsx b/app/presentation/component/article/Skills.tsx index b20f2b0..c43bb62 100644 --- a/app/presentation/component/article/Skills.tsx +++ b/app/presentation/component/article/Skills.tsx @@ -1,9 +1,7 @@ import React from 'react' import ArticleHeader from '../text/ArticleHeader' -type Props = {} - -const Skills = (props: Props) => { +const Skills = () => { return (
diff --git a/app/presentation/screen/MainScreen.tsx b/app/presentation/screen/MainScreen.tsx index e177602..4b5c1d5 100644 --- a/app/presentation/screen/MainScreen.tsx +++ b/app/presentation/screen/MainScreen.tsx @@ -6,9 +6,7 @@ import Skills from '../component/article/Skills' import Projects from '../component/article/Projects' import Career from '../component/article/Career' -type Props = {} - -const MainScreen = (props: Props) => { +const MainScreen = () => { return (