[TS] CSS 객체 props로 넘기기

장동균·2022년 10월 30일
0
post-custom-banner
// App.tsx
const App = () => {
  return <Button style={{ padding: '2rem', fontSize: '3rem' }} />
}

// Button.tsx
interface Props {
  style: React.CSSProperties;
}

const Button = ({ style }: Props) => {
  return <button style={style} />
}

기본적으로 style 객체의 타입은 CSSProperties | undefined


참고문헌

https://bobbyhadz.com/blog/react-pass-style-as-props-typescript

profile
프론트 개발자가 되고 싶어요

0개의 댓글