일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- AWS
- 코틀린
- Python
- DataGridView
- MySQL
- Winform
- 리액트
- 파이썬
- git
- mybatis
- Spring
- 도커
- 스프링부트
- Kotlin
- design pattern
- react
- 리팩토링
- 자바
- docker
- machine-learning
- VOA
- springboot
- Java
- c#
- 쿠버네티스
- 마이바티스
- kubernetes
- Spring Boot
- 스프링
- github
Archives
- Today
- Total
목록useRef (1)
보뇨 다이어리
focus input on page loading
한창 typescript 와 react 로 맛을 보던중... 페이지 로딩할때 input 태그에 바로 focus 를 어떻게 해야하는지 찾아보았다 사실 간단한데 typescript 로 짤려니까 에러가 보기싫더라구...ㅠ const Search = () => { const [input, setInput] = useState(""); const history = useHistory(); const inputRef = useRef(); const search = (e: React.MouseEvent) => { e.preventDefault(); history.push("/search"); }; useEffect(() => { // error inputRef.current.focus(); }, []); return..
프론트엔드/React 정보
2020. 9. 2. 19:38