Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바스크립트
- mongodb
- it
- java
- 메소드
- JavaScript
- 프로그래머스
- https
- Nodejs
- AWS
- ubuntu
- reduce
- nomadcoder
- TypeScript
- 생활코딩
- 조건문
- 항해99
- npm
- Node.js
- JWT
- Load Balancer
- 타입스크립트
- nginx
- Joi
- elb
- mongoose
- CORS
- wil
- 노마드코더
- MYSQL
Archives
- Today
- Total
V-logue
'IntrinsicAttributes' 형식에 'children' 속성이 없습니다. 본문
Children Component가 props를 전달받지 않을 때 생기는 에러인 모양
props를 전달받지 않는 컴포넌트의 타입을 any로 넣고 해결했다.
import './Card.css';
function Card() {
return <div className='card'></div>;
};
export default Card;
// 이전 에러가 나던 코드
import './Card.css';
function Card(props: any) {
return <div className='card'></div>;
};
export default Card;
// 에러가 해결된 코드
'Error' 카테고리의 다른 글
[MySQL / MariaDB] Can't add new command when connection is in closed state (0) | 2023.07.12 |
---|---|
[Nginx] Nginx 504 Gateway Time-out (0) | 2022.08.03 |
[Ubuntu] This Node instance does not support builds for Node-API version 3 (0) | 2022.07.28 |
[ubuntu] npm missing required argument #1 (0) | 2022.07.28 |
[AWS] EC2 503 Service Temporarily Unavailable (0) | 2022.07.26 |