20 lines
260 B
JavaScript
Raw Normal View History

/**
*
* ListItem
*
*/
import { Link } from 'react-router';
function ListItem(props) {
return (
<li>
<Link to={props.destination}>
<h4>{props.title}</h4>
</Link>
<p>{props.message}</p>
</li>
);
}
export default ListItem;