데이터를 불러오는 작업을 드디어 해봤다. 처음엔 이해하기 어려웠지만 많이 적응했다. 파일은 Home, constant, hooks, moviedetail, movielist로 구성되어있다.
Home
import "./index.css";
const Home = () => {
return (
<div className="move_to_list">
<a href="/movielist">Let's search the Movie</a>
</div>
);
};
export default Home;
CSS
.move_to_list {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 100px;
font-size: 80px;
font-weight: 200;
}
body {
background-color: rgb(43, 39, 39);
color: white;
}