일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 희망
- Kotlin else if
- NextJs
- 파이썬 제어문
- Python
- 파이썬
- 파이썬 반복문
- Kotlin 클래스 속성정의
- 좋은글
- 다중조건문
- activate 오류
- Kotlin Class
- git
- Kotlin 조건문
- 성공
- Variable declaration
- 도전
- django virtualenv
- 강제 타입변환
- 넥스트js
- 파이썬 장고
- python Django
- 장고 가상환경
- Kotlin 클래스
- 파이썬 클래스
- Python Class
- Kotlin If
- github
- 자바 기본타입
- 클래스 속성
- Today
- Total
목록넥스트js (2)
키모스토리

navigation app/components 폴더 생성 후 navigation.tsx 파일 생성 후 아래 코드 코딩'use client'import Link from "next/link";import { usePathname } from "next/navigation";export default function Navigation() { const path = usePathname(); console.log(path); return ( Home {path === "/" ? "💖" : ""} About-us {path === "/about-us" ? "💖" : ""} ..

1. 프로젝트 폴더 생성 후 npm init-ynpm init -y root/tsconfig.json 파일 생성됨 2. 필수 라이브러리 설치npm install react@latest next@latest react-dom@latest * pakage.json 수정 (scripts 필드){ "name": "nextjs", "version": "1.0.0", "main": "index.js", "scripts": { "dev": "next dev" // npm run dev 명령어로 컴파일 실행이 되도록 설정 }, "keywords": [], "author": "", "license": "MIT", "description": "", "dependencies": { "next..