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

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..

여기서 타인이 상처받고 힘들어할까 봐 말을 하지 않으려는 사람도 있으나 말을 하지 않는다고 해결될 문제가 절대 아니므로 혼자서 앓다가 더 빠르게 안 좋은 결과에 도달할 수 있습니다. ‘나’를 알지 못하는 상태에서 혼자 모든 생각들을 담아두고 참는 것은 위와 같은 이유로 스스로에 대한 책임을 회피하려는 방향으로 생각하게 되기 때문입니다. 무엇보다도 이렇게 참는 것은 상황을 더욱 극적으로 치닫게 할 수 있는데 이런 상황에서 혼자서 모든 스트레스를 담아두는 것은 결국 시간이 지나 인내심의 한계를 돌파하여 터지기 때문입니다. 이렇게 터진 후 이뤄지는 자신의 생각과 행동에 대해 스스로 정당성을 부여하게 됩니다. 자신이 주변 사람들을 배려한다는 생각으로 혼자 담아두었던 고통스러운 시간들에 대한 보상으로서 자신의 행..

그리고 스스로 그 어떤 것도 확신할 수 없는 ‘나’는 자신의 합리화에 대해 타인의 인정을 받아 정당성을 부여하려는 바람으로 이어지게 됩니다. 여기서 이런 행동은(나의 생각을 다른 사람에게 인정받으려고 하는 것은) 더불어 살아가는 사회 속에서 인간의 본능에 의한 것으로 문제가 되지는 않습니다. 그러나 정확한 문제를 알지 못한 채 그저 회피하기 위한 문제 제기는... (진정한 나의 문제를 보지 않은 채 이런 자신의 문제를 감추기 위한 남 탓과 상황 탓, 그리고 여러 핑계를 사람들에게 얘기하는 것) ... 결과적으로 어떤 문제도 해결하지 못한 다는 점에서 자신과 상대방에게 무의미한 시간을 만들고 스트레스를 유발하게 됩니다. 문제라고 결정지은 자신의 생각과 감정에 대해 주체적으로 어떤 확실한 기준을 기반한 원인..

때문에 타인과 상황이 아닌 자신의 생각/감정과 결론에 대해 끊임없이 자문하면서 ‘나’를 몰랐던 자신을 발견하고, 왜 그런 결정을 했고, 그것이 과연 옳았는지 고민해야 하는 것입니다. 이 과정을 통해 자신이 누구인지 알게 되고 내가 진정으로 원하는 바를 알게 되어 내가 이루고자 하는 나의 목표를 향해 강한 믿음과 함께 끊임없이 이뤄나가는 것입니다. 끊임없이 진정한 나를 마주한 채 스스로 무엇을 하고 싶은 지, 왜 하고 싶은지, 어떻게 할 것인지 묻는 것입니다. 나의 감정과 생각에 집중하고 자문하여 자신이 어떤 사람인지 잃지 않고, 과거보다 더 나은 나로 발전시켜 나가는 나의 삶을 사는 것입니다. 이렇게 자신이 누구인지 알게 된다면 상황에 따라 내가 내린 결정과 아닌 결정을 구분할 수 있게 되어 자신의 문제..
Problem : In the process of assigning the modified value in 'setTags' to the 'onChange' function, the value was updated one beat slowly. code: import React, { useState } from 'react'; interface ImageUploadProps { onChange: (value: string[]) => void; errors: any; } const TagInput: React.FC = ({ onChange, errors }) => { const [tags, setTags] = useState([]); const [tag, setTag] = useState(''); func..
In the part where you specify 'useForm', it is recommended to specify only one button: submit. If another button exists and it uses the lib as the useForm, submit will be executed. Instead of button, it is better to specify another div and set onClick.

code: Error not scrolling after navigating to '/User/Transactions/' const onDelete = () => { setLoading(true) axios .post('/api/delete/my-transaction', { transactionId: transactionId }) .then(() => { toast.success('Complete deletion of transaction'); router.push('/User/Transactions/'); }) .catch((err) => { toast.error(`Fail: The delete failed.`); console.error(err); }).finally(() => { setLoading..

While developing the web3 web app, the following error occurred during the metaMask linkage process. Currently, the metamask side has received the problem and the resolution is in progress. This error is solved once the metamask is disabled. Removing intrinsics.JSON.rawJSON Removing intrinsics.JSON.isRawJSON Removing intrinsics.%ArrayPrototype%.toReversed ... https://community.metamask.io/t/erro..