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 (