목록분류 전체보기 (373)
Silver Library (Archived)
This page is a summary of an article written by Reed Barger, for personal use. Does: Page-based routing (create a page by putting components in /pages) A built-in router (no need to install React Router) API routes (write backend code using Node.js in /pages/api) Super fast builds for development / production (see saved changes instantly) Image and font optimization Built-in ESLint and TypeScrip..
이 글은 다음으로 이어집니다. https://silverlibrary.tistory.com/484 What is possible and not : Next.js + some example This page is a summary of an article written by Reed Barger, for personal use. Does: Page-based routing (create a page by putting components in /pages) A built-in router (no need to install React Router) API routes (write backend code using Node.js in /pag silverlibrary.tistory.com next.js 로 ..
https://www.intervue.io/developer/short-note/what-is-a-lexical-environment-sandbox-5XTCDNYWG Intervue - Developer Best short notes on programming concepts & questions asked in interviews www.intervue.io A lexical environment is a data structure that holds identifier-variable mapping. (here identifier refers to the name of variables/functions, and the variable is the reference to actual object [i..
useLocation, 이건 query parameter 를 받아오는 용도로 알려져 있는데 한번 간략히 상기삼아 기록해보겠습니다. useLocation? This hook returns the current location object. This can be useful if you'd like to perform some side effect whenever the current location changes. import * as React from 'react'; import { useLocation } from 'react-router-dom'; function App() { let location = useLocation(); React.useEffect(() => { // Google Anal..