import React from 'react'; import PropTypes from 'prop-types'; import { PostItem } from '../style'; export default function Posts({ posts }) { return ( ); } Posts.propTypes = { posts: PropTypes.array.isRequired };