import * as React from 'react'; import { TitleText, UppercaseText } from '../common/CustomTexts'; interface Props { id: number; title: string; boardName: string; } const PostListItem = ({id, title, boardName}: Props) => (
{title} {boardName}
); export default PostListItem;