import * as React from 'react'; interface Props { title: string; boardName: string; } const PostListItem = ({title, boardName}: Props) => (
{title}
{boardName}
); export default PostListItem;