Dynamic Tag Name Props
리액트에서 props로 태그 변경하는 방법
상황
styled-components 사용시
styled-components 사용시// button 컴포넌트
<button
as={href && 'a'}
className={ href ? 'link' : 'button'}
{...props}
> {children} </button>
// 사용시
<Button as="a" href="/">a 태그로 렌더링</Button>
<Button>button 태그로 렌더링</Button> React 사용으로만 구현하기
더 연구해 볼 것
참고
Last updated