main page 컴포넌트 : 우리가 만들 미니 블로그에 사용자가 처음 접속했을 때 보게 될 페이지 글을 작성할 수 있는 버튼과 글 목록을 보여주어야 함 MainPage.jsx 코드 작성 import React from 'react'; import { useNavigate } from 'react-router-dom'; import styled from 'styled-components'; import PostList from '../list/PostList'; import Button from '../ui/Button'; import data from '../../data.json'; const Wrapper = styled.div` padding: 16px; width: calc(100% - 32px..