componentDidMount() { //랜더가 실행되고 나서 실행된다. 1번만 실행된다
fetch("https://jsonplaceholder.typicode.com/users")
.then((res) => res.json())
.then((res) => this.setState({ monsters: res }));
}
constructor() 1등
render() 2등 스테이트에 변화가 생길때마다 랜더한다.
componentDidMount() 3등 최초로 1번만 실행한다.
fetch("https://jsonplaceholder.typicode.com/users")
fetch(url, [options])