목록나의 성장기/js & react (3)
성장일지
회사에서 react 와 nextjs 작업중이다.소스 파악중이며 수정해달라는 요청이 있는데디자인은 해본적이 없어 난감하지만figma 이용한 플러그인으로기존 사이트를 가져와서 이렇게 저렇게 수정해볼 생각이다.피그마를 좀 해둔게 이렇게 쓰이네블록체인의 전망은 꽤 괜찮은걸로 보인다.다만 기술과는 별개로 암호화폐는 앞으로 행보가 궁금하다.핀테크로 몸 담았으니 도메인지식 쌓고얼른 기여할수 있도록 노력해야겠다.도커 쿠버네티스 공부 좀 하고 코테문제도 좀씩 다시 해보려고 한다.
App.js import React, { Component } from "react"; import ScrollBox from "./ScrollBox"; class App extends Component { render() { return ( (this.scrollBox = ref)} /> this.scrollBox.scrollToBottom()}> 맨 밑으로 ); } } export default App; ------------------------------------------------------------------------------------------------ import React, { Component } from "react"; class ScrollBox extends Compo..
import React, { Component } from "react"; class EventPractice extends Component { state = { username: "", message: "", }; handleChange = (e) => { this.setState({ [e.target.name]: e.target.value, }); }; handleClick = () => { alert(this.state.username + ":" + this.state.message); this.setState({ username: "he", message: "ha", }); }; handleKeyPress = (e) => { if (e.key === "Enter") { this.handleCli..