일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- php
- Gradle
- redis
- ubuntu
- laravel
- java
- 요리
- tool
- Spring Boot
- ReactJS
- Oracle
- devops
- MySQL
- Git
- IntelliJ
- Design Patterns
- JVM
- Spring
- jenkins
- jsp
- linux
- it
- Spring Batch
- AWS
- springboot
- 맛집
- db
- javascript
- elasticsearch
- Web Server
Archives
- Today
- Total
아무거나
React Hook을 이용한 Functional Component 구현 본문
반응형
React Hook을 이용한 Functional Component 구현
// tsx
import * as React from 'react'
...
interface IProps {
history?: History,
}
interface IStateProps {}
interface IState {
testVal: string,
}
type Props = IProps & IStateProps
const Home: React.FC<Props> = ({ history }) => {
const [state, setState] = React.useState<IState>({
testVal: 'TEST',
})
const { testVal } = state
// componentDidMount
React.useEffect(() => {}
// Test Function
const handleButton = (clickText: string) => {
setState({
...state,
testVal: clickText
})
}
...
return (
<>
<Button onClick={handleButton("Click")} />
{testVal}
</>
)
}
export default ...
반응형
'Javascript & HTML & CSS > reactjs' 카테고리의 다른 글
모바일에서 Input Text 에 값을 입력 시 하단 키패드 때문에 화면 가려지는 현상 해결 (0) | 2020.05.06 |
---|---|
react + typescript ref를 사용한 값 입력 후 포커싱 자동 이동 예제(ex:핀 번호) (0) | 2020.04.06 |
Number값 들어온 값에 따라 0표시 제어하는 함수(개수 입력에 용이하다) (0) | 2020.03.21 |
React + Typescript Scroll Down 구현 (0) | 2020.03.21 |
react uri path 값 가져오기 (0) | 2020.01.02 |
Comments