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
- it
- CORS
- Nodejs
- Load Balancer
- reduce
- Node.js
- 생활코딩
- https
- AWS
- 노마드코더
- mongoose
- nginx
- 타입스크립트
- 프로그래머스
- 메소드
- npm
- nomadcoder
- ubuntu
- JWT
- TypeScript
- elb
- JavaScript
- mongodb
- MYSQL
- 항해99
- java
- Joi
- 자바스크립트
- wil
- 조건문
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 |
Comments