샘플앱 세탁

박서현·2023년 9월 12일
0
post-thumbnail
post-custom-banner
  • src / layout.tsx -> 기본적인 웹페이지의 골격을 구성한다.

📁index.js

import './globals.css'

export const metadata = {
  title: 'Create Next App',
  description: 'Generated by create next app',
}

export default function RootLayout({ children }) {
  return (
    <html>
      <body>{children}</body>
    </html>
  )
}

📁page.js

  • index.js의 children이 page.js에서 온다
export default function Home() {
  return (
    <>
      Hello, Nextjs!
    </>
  )
}

📁globals.css

@tailwind base;
@tailwind components;
@tailwind utilities;

post-custom-banner

0개의 댓글