UNPKG

redux-easy-async

Version:

Redux Easy Async makes handling asynchronous actions, such as API requests, simple, reliable, and powerful

15 lines (13 loc) 328 B
import React from 'react'; export default ({ title, body }) => ( <div className="post"> <div className="panel panel-primary"> <div className="panel-heading"> <h3 className="panel-title">Title: {title}</h3> </div> <div className="panel-body"> {body} </div> </div> </div> );