FrontEnd/React
[React] React 기초 문법
2021. 4. 20. 23:00반응형
1. return의 {} 코드에 자바스크립트 넣어도 잘 동작함
주의할점 <tag></tag> 사이에 넣어야 잘 동작함.
const MainTemplate = ({ timeModules, MyChart }) => {
{console.log("hellow wolrd 123")}
return (
<div>
{console.log("hellow wolrd 124")}
</div>
)
}
<<출력화면>>
hello world 123
hello world 124
2. React Button 누르면 값 바뀌게 하기
export default class Eaxmple extends React.Component {
constructor(props) {
super(props);
this.state = {
text: "변경 전이요",
};
}
changeText = () => {
this.setState({
text: "변경 성공!",
});
};
render() {
return (
<div>
<h1>{this.state.text}</h1>
<button onClick={this.changeText}>버튼</button>
</div>
);
}
}
hook
반응형
'FrontEnd > React' 카테고리의 다른 글
[React] 리액트 기본 예제 (클래스 선언, 객체할당) (0) | 2022.01.26 |
---|---|
kakao 공유하기 구현하기 (0) | 2021.04.23 |
[React] Ubuntu에 ReactJS 설치 (0) | 2021.03.10 |
[React] 5분 안에 React.js로 Hello world 띄우기 (0) | 2021.03.07 |
error An unexpected error occurred: "https://registry.npmjs.org/react: unable to verify the first certificate". 오류 (0) | 2020.02.13 |