목록react 공부 (1)
yuns
[React] 기본 문법
기본 프로젝트는 아래 명령어로 실행한다. npx create-next-app@latest https://react.dev/learn 를 보고 처음 코드를 입력해보았다. 웹사이트에서 첫 페이지로 layout.tsx파일을 접근한다. import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", }; export defa..
react 공부
2024. 4. 21. 02:03