styled-component+ts props 전달하기
typescript환경에서 styled-components
에 props를 전달하려면 제네릭을 활용하면 된다.
나는 next.js를 사용중이라 @emotion/styled
를 사용하였다.
예시
1 | interface blockType { |
실제 사용할 때는 컴포넌트에 props를 내려주고 접근하여 사용하면 된다.
1 | <BlockWrapper> |
typescript환경에서 styled-components
에 props를 전달하려면 제네릭을 활용하면 된다.
나는 next.js를 사용중이라 @emotion/styled
를 사용하였다.
1 | interface blockType { |
실제 사용할 때는 컴포넌트에 props를 내려주고 접근하여 사용하면 된다.
1 | <BlockWrapper> |