Styled-Components

컴포넌트 생성시 파일명 규칙

스타일 컴포넌트 사용시

태그의 속성을 지정하기

JoinPage.js

<CMInput **hint="username"** **type="text"** />
function CMInput(props) {
  console.log(props);
  return <StyledInput placeholder={`Enter ${props.**hint**}`} type={props.**type**} />;
}
<CMButton **text={"sign in"}** />