ChFlick/blogstoph

View on GitHub
src/components/editor/PostListItem.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { Link } from 'react-router-dom';
import moment from 'moment';

const PostListItem = (props) => (
    <section>
        <Link className="list-item" to={`post/${props.post.title.replace(/ /g, '-')}`}>
            <h1 className="list-item__title">{props.post.title}</h1>
            <h2 className="list-item__subtitle">{props.post.subtitle}</h2>
            <p className="list-item__data">By {props.post.author} on {moment(props.post.date).format('DD.MM.YYYY')}</p>
        </Link>
    </section>
);

export default PostListItem;