mirror of
https://github.com/strapi/strapi.git
synced 2025-08-15 20:27:23 +00:00
20 lines
260 B
JavaScript
20 lines
260 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* 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;
|