Skip to content

Commit

Permalink
remove never used props
Browse files Browse the repository at this point in the history
  • Loading branch information
jaemin-s committed Nov 27, 2024
1 parent 6639bdd commit 87bf268
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions app/presentation/component/article/AboutMe.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from 'react'
import ArticleHeader from '../text/ArticleHeader'

type Props = {}

const AboutMe = (props: Props) => {
const AboutMe = () => {
return (
<div className='h-full flex flex-col items-center justify-center'>
<ArticleHeader str='ABOUT ME'/>
Expand Down
4 changes: 1 addition & 3 deletions app/presentation/component/article/Career.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from 'react'
import ArticleHeader from '../text/ArticleHeader'

type Props = {}

const Career = (props: Props) => {
const Career = () => {
return (
<div className='h-full flex flex-col items-center justify-center'>
<ArticleHeader str='CAREER'/>
Expand Down
4 changes: 1 addition & 3 deletions app/presentation/component/article/Projects.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from 'react'
import ArticleHeader from '../text/ArticleHeader'

type Props = {}

const Projects = (props: Props) => {
const Projects = () => {
return (
<div className='h-full flex flex-col items-center justify-center'>
<ArticleHeader str='PROJECTS'/>
Expand Down
4 changes: 1 addition & 3 deletions app/presentation/component/article/SimpleIntroduce.tsx
Original file line number Diff line number Diff line change
@@ -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심재민입니다`
Expand Down
4 changes: 1 addition & 3 deletions app/presentation/component/article/Skills.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from 'react'
import ArticleHeader from '../text/ArticleHeader'

type Props = {}

const Skills = (props: Props) => {
const Skills = () => {
return (
<div className='h-full flex flex-col items-center justify-center'>
<ArticleHeader str='SKILLS' color='#000000'/>
Expand Down
4 changes: 1 addition & 3 deletions app/presentation/screen/MainScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div className="bg-gray-600 w-screen h-screen overflow-y-scroll">
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-01.webp"}>
Expand Down

0 comments on commit 87bf268

Please sign in to comment.