Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

컴포넌트 렌더링 매커니즘 변경 #31

Open
junghyeonsu opened this issue Mar 12, 2022 · 0 comments
Open

컴포넌트 렌더링 매커니즘 변경 #31

junghyeonsu opened this issue Mar 12, 2022 · 0 comments
Assignees

Comments

@junghyeonsu
Copy link
Contributor

문제점

  • 현재 컴포넌트 동작 방식

현재는 우리의 컴포넌트 배경을 씌우고 싶은 컴포넌트 "안에" 우리의 컴포넌트를 넣어줘야 합니다.
width나, height를 넣어주려면 부모 컴포넌트에 넣어주어야 합니다.
이러한 방식은 너무 수동적입니다.

<Styled.Card width={width} height={height}>
    <Season type={type} />
</Styled.Card>
  • 원하는 컴포넌트 동작 방식
<Season type={type} width={'100vw'} height={'600px'}>
   {children}
</Season>

우리의 컴포넌트에 직접 width, height property를 넣는 능동적인 방식으로 변경하고 싶습니다.

기간

약... 3주?..
@junghyeonsu 가 취준으로 많이 바쁩니다...

@junghyeonsu junghyeonsu self-assigned this Mar 12, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant