Files
astuto/app/javascript/components/Roadmap/PostListItem.tsx
2019-09-02 19:59:55 +02:00

17 lines
365 B
TypeScript

import * as React from 'react';
interface Props {
title: string;
boardName: string;
}
const PostListItem = ({title, boardName}: Props) => (
<a href="#" className="postLink">
<div className="postListItem">
<div className="postTitle">{title}</div>
<div className="postBoard">{boardName}</div>
</div>
</a>
);
export default PostListItem;