개발의 모든것/Next.JS
_app.js
연재몬
2022. 6. 29. 00:47
Next.Js에서 _app.js 는 리액트에서 index.js와 같은 역할을 한다.
export default function App({ Component, pageProps }) {
return (
<div>
<Component {...pageProps} />
</div>
);
}