import React, { FC } from 'react' import { Link } from 'react-router-dom' import './styles.styl' import { GithubFlavoredMarkdown } from '../../../components/GithubFlavoredMarkdown' interface Props { path: string title?: string summary: string createdDate?: string } export const BlogSummary: FC = ({ path, title, createdDate, summary, }) => (
{title}
{createdDate}
{summary && (
)}
)