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

Redux data flow is a unidirectional data flow architecture that ensures that data can only flow from the actions to the reducers, and then to the store. This makes it easier to reason about the state of the application and to track changes over time. The data flow in Redux is as follows: The user interacts with the application, which triggers a change in the state. The component that handles the..

Redux is an open-source JavaScript library for managing and centralizing application state. It is most commonly used with libraries such as React or Angular for building user interfaces. Similar to Facebook's Flux architecture, it was created by Dan Abramov and Andrew Clark. Redux follows a unidirectional data flow architecture, which means that data can only flow from the actions to the reducer..
reference : https://kentcdodds.com/blog/wrapping-react-use-state-with-type-script Wrapping React.useState with TypeScript Stay up to date Subscribe to the newsletter to stay up to date with articles, courses and much more! Learn more Stay up to date Subscribe to the newsletter to stay up to date with articles, courses and much more! Learn more All rights reserved © Kent C. D kentcdodds.com

error: Why: Basically this working message comes. Because of eslint. "next/babel" is basically the presets that are created by Next for the eslint. Solution: Reference: https://www.youtube.com/watch?v=nEA1wS3ZncU https://nextjs.org/docs/pages/building-your-application/configuring/babel Configuring: Babel | Next.js Using Pages Router Features available in /pages nextjs.org
React Context is a way to share data between components without having to pass props down manually at every level. This can be useful for sharing data that is used by many components in an application, such as the current user, the current theme, or the current location. To use React Context, you first need to create a context object using the createContext() function. This function takes two ar..

Doing : While configuring the chat page, I wanted the chat bubbles to be on either side using 'rtl', 'ltr'. {isSender ? 'You' : receiverName} {fromNow(time)} {messageImage && ( )} {messageText && ( {messageText} )} problem: The results were as follows. Why: The issue you are facing seems to be related to the style attribute where you set the direction based on the isSender prop. The problem is t..