Advertisement
robertvari

Simple Post component

Apr 12th, 2020
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react';
  2. import './Post_style.css'
  3.  
  4. function Post(props) {
  5.     const {title, body, created} = props.data;
  6.  
  7.     return (
  8.         <div className="post_item">
  9.             <h3>{title}</h3>
  10.             <p>{body}</p>
  11.             <div>{created}</div>
  12.         </div>
  13.     );
  14. }
  15.  
  16. export default Post;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement