2. Style Basic

CSS 설정 : class

<style>
  .greeting {
    color: #00F;
  }
</style>

CSS 설정 : inline style

css를 자바스크립트 객체로 만들어서 전달

export default function Greeting() {
  const style = {
    color: '#00F',
  };

  return (
    <p style={style}>
      Hello, world!
    </p>W
  );
}
export default function Greeting() {
  return (
    <p
      style={{
        color: '#00F',
      }}
    >
      Hello, world!
    </p>
  );
}

Last updated