질문 Next.js를 실행시킬 때, index.html 파일 대신에 index.js 혹은 index.jsx 파일이 있는 것을 당연하게 볼 수 있다. 왜 인지 아는가? 왜일까? The only code left in the HTML file is JSX, so you can change the file type from .html to .js or .jsx. => Next.js 프레임워크를 사용하게 되면서 html 파일엔 jsx 코드만 남게된다. 그래서 html 파일 타입을 js나 jsx로 바꿔주면 된다. ## HTML 파일 코드 ## JSX 파일 코드 // index.html import { useState } from 'react'; function Header({ title }) { return {t..