일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vscode
- 프로젝트 셋팅
- CORS
- 리터럴
- 소셜 로그인
- 모던자바스크립트
- git
- array정적메서드
- 프로그래머스
- vercel
- 구글 로그인
- 초기셋팅
- 코테
- deep dive
- 코딩테스트
- 코드카타
- React
- 스파르타코딩클럽
- js
- useRouter
- 셋팅
- Next
- nextjs
- 티스토리챌린지
- 모던 자바스크립트
- 오블완
- 내일배움캠프
- error
- domain
- 자주 까먹는
- Today
- Total
목록2024/08/04 (2)
도록
결론 : Server Components가 Client Component에게 전달 할 수 있는 값은 한정되어 있다. 에러메세지Error: Functions cannot be passed directly to Client Components unless you explicitly expose it by marking it with "use server". Or maybe you meant to call this function rather than return it. {Icon: function y, onClick: undefined} 해결책문제가 생긴 Server Component 상단에 "use client" 를 붙여준다.or 해당 props를 넘겨주지 않도록 구조를 바꾼다. 상황요약: Server..
1. [DEPRECATED] Default export is deprecated. Instead use `import { create } from 'zustand'`변경 전변경 후import create from "zustand"; import { create } from "zustand"; 2. Image with src has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.변경 전변경 후 Image ..