728x90
Next.js에서 css-in-js 작성하는 방법
1. inline css(not cool)
2. <style jsx> 작성
- 정의한 컴포넌트 파일 안에서만 유효함. 다른 컴포넌트에 영향을 주지 않음.
export default function index () {
return (
<nav></nav>
<style jsx>`{
nav {
background-color: red;
}
}`</style>
)
}
전역 style 설정 방법
pages/_app.js를 만들면 됨.
APP COMPONENTS APP PAGES차이점
728x90
'React' 카테고리의 다른 글
[NextJS] 서버에서 데이터도 패치받아서 렌더링하기 (0) | 2022.01.16 |
---|---|
[NEXTJS] api key 숨기기 nextjs rewrites (0) | 2022.01.16 |
[react] memo (0) | 2021.12.29 |
[React-Redux] typescript로 세팅하는 법 (0) | 2021.11.28 |
깃허브 페이지 creat-react-app 배포하기 (0) | 2021.11.28 |
댓글