일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- CLASS
- tailwindcss
- express.js
- solidity
- 기준
- Redux
- API
- Interface
- HTML
- error
- REACT
- graphQL
- concept
- bitcoin
- JavaScript
- SSR
- 삶
- nextJS
- evm
- built in object
- node.js
- typeScript
- Props
- web
- useState
- Ethereum
- blockchain
- CSS
- hardhat
- middleware
- Today
- Total
목록Frontend (231)
ReasonJun

App.js code : import { useEffect, useState } from 'react'; import './App.css'; import B from './components/B'; import A from './components/A'; function App() { const [value, setValue] = useState(''); const [posts, setPosts] = useState([]); useEffect(() => { fetch('https://jsonplaceholder.typicode.com/posts') .then((res) => res.json()) .then((posts) => setPosts(posts)); }, []); return ( setValue(..
JSONPlaceholder is a free online REST API that provides mock data for testing and prototyping purposes. It allows developers to simulate various HTTP endpoints and obtain JSON responses similar to a real API. JSONPlaceholder is commonly used by developers who need to interact with an API during development without the need for a complete backend implementation. Here are some key features and cha..
In React, useEffect is a hook that allows you to perform side effects in functional components. Side effects can include fetching data from an API, subscribing to events, manipulating the DOM, and more. The useEffect hook is similar to lifecycle methods such as componentDidMount, componentDidUpdate, and componentWillUnmount in class components. The useEffect hook takes two arguments: a function ..

React Developer Tools is a browser extension available for Google Chrome that provides developers with a set of helpful tools for inspecting, debugging, and profiling React applications. It is designed specifically for developers working with React, a popular JavaScript library for building user interfaces. Here are some key features and functionalities of React Developer Tools: Profiling and Pe..
JSX key is a special attribute used in React.js when rendering lists of elements. When rendering multiple elements or components in a loop, React requires each item to have a unique "key" prop. The key prop helps React keep track of the individual items in the list and efficiently update and reorder them when necessary. The key prop should be assigned a unique identifier for each item in the lis..
Higher-Order Components (HOCs) are a design pattern in React that allow for code reuse, logic abstraction, and component composition. HOCs are functions that take a component as input and return an enhanced version of that component with additional functionality or props. Here's an example to illustrate the concept of an HOC: // Higher-Order Component const withLogger = (WrappedComponent) => { r..