Skip to content

함수 작성 방식

박종민 edited this page Feb 27, 2024 · 1 revision
  • Component는 function(함수 선언문)으로
  • 안의 함수들은 화살표 함수로
  • export default 밑에 하는 것으로
  • utils 함수들은 화살표함수로
 function Button({ imageUrl, children }: ButtonProps) {
  console.log(imageUrl)
  const handleClick = () => {} // Component 내의 함수는 화살표 함수로!
  return (
    <div>
      <Image src={imageUrl} alt="imageUrl" />
      {children}
    </div>
  )
}

export default Button

const StyledWrapper = styled.div``