티스토리 뷰
cmder 이용해 폴더 만들기
yarn create next-app 파일이름 --typescript
마지막에 @/* 를 활성화 시킬때는 tap키를 눌러주면 활성화 가능!!
tankstact-query
- yarn add @tanstack/react-query
react-toastify
- yarn add react-toastify
react-icons
- yarn add react-icons
// jwt 토큰 셋팅 도와주는 라이브러리
js-cookie
- yarn add --dev @types/js-cookie
// jwt 디코딩 도와주는 라이브러리
jsonwebtoken
- 설치 명령어: - yarn add --dev @types/jsonwebtoken - 설치 명령어: - yarn add jsonwebtoken
사용해보고 작성한 글: https://anywhereim.tistory.com/94
// 주소 입력받을 때 사요하는 라이브러리
react-daum-postcode
설치 명령어: - yarn add react-daum-postcode
// 훅 폼 쉽게 만들 수 있도록 도와주는 라이브러리
react-hook-form
설치 명령어: - yarn add react-hook-form
사용해보고 작성한 글 : https://anywhereim.tistory.com/93
QueryProvider
"use client"; import React from "react"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; const queryClient = new QueryClient(); export function QueryProvider({ children }: React.PropsWithChildren) { return ( <> <QueryClientProvider client={queryClient}>{children}</QueryClientProvider> </> ); }
layout
import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { QueryProvider } from "./provider"; import { ToastContainer } from "react-toastify"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "주밍글", description: "Generated by create next app", }; interface LayoutType { children: React.ReactNode; } export default function RootLayout({ children }: LayoutType) { return ( <html lang="ko"> <body className={inter.className}> <QueryProvider> <ToastContainer /> {children} </QueryProvider> </body> </html> ); }
toast
import { toast } from "react-toastify"; export const addWish = () => toast("toast 알림 문구 넣기", { position: "top-right", autoClose: 2000, hideProgressBar: true, closeOnClick: true, pauseOnHover: true, draggable: true, progress: undefined, pauseOnFocusLoss: false, theme: "light", });
파일구조
📦app
┣ 📜(login)
┣ 📜favicon.ico
┣ 📜globals.css
┣ 📜layout.tsx
┣ 📜page.tsx
┗ 📜provider.tsx
'TIL' 카테고리의 다른 글
jwt 토큰 사용하기 (0) | 2024.05.21 |
---|---|
useFormContext(react-hook-form)사용해보기 with DaumPostcodeEmbed (0) | 2024.05.20 |
Next.js Error Handling (0) | 2024.04.25 |
장바구니 list 체크박스 만들기 (0) | 2024.03.23 |
TS(TypeScript) 파일 만드는 방법 (0) | 2024.03.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- styled component GlobalStyle 사용방법
- readme 작성해야 하는 이유
- Warning: A component is changing an uncontrolled input to be controlled.
- axios instance 작성하기
- readme 역할
- Warning: Each child in a list should have a unique "key" prop.
- git cache
- simple Icon 사용방법
- readme작성해보기
- axios 설치하기
- styled component 조건부 사용방법
- 별점만들기
- readme 작성 방법
- nextjs 토큰 만료처리하기
- styled component 사용방법
- Fetch와 Axios 의 장단점
- 에러모음집
- axios 사용하기
- 영화별점만들기
- 별점 색채우기
- 유효성검사 css
- 유효성검사
- styled component 설치방법
- 영화 별점
- readme 이미지 추가 방법
- axiosinstance 사용 시 토큰 사용 법
- Warning: validateDOMNesting(...): <li> cannot appear as a descendant of <li>
- axios CRUD
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함