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
- DOM
- 메소드 실행
- promise
- try.. catch
- addEventListener
- CSS
- 자바스크립트
- 이벤트
- useRef
- 렌더링
- Props
- callback함수
- webProject
- typeScript
- Frontend Study
- 리액트
- 배열
- 함수 실행
- 이벤트핸들링
- HTML
- 비동기함수
- useState
- FrontendStydy
- 배열메소드
- input
- this 객체
- JavaScript
- frontendstudy
- 컴포넌트
- REACT
Archives
- Today
- Total
목록React Developer Tools (1)
이다닷
[React] Day 2 - 컴포넌트 _ props
props 이용법 {this.props.값의 이름} ex) {this.props.name} 결과 코드 import React, { Component } from 'react'; import './App.css'; class Subject extends Component { render() { return ( {this.props.title} {this.props.sub} ); } } class TOC extends Component { render() { return ( HTML CSS Javascript ); } } class Content extends Component { render() { return ( {this.props.title} {this.props.desc} ); } } class A..
카테고리 없음
2023. 8. 26. 18:06