import React from 'react' import PropTypes from 'prop-types' import { Link } from 'gatsby' import Time from 'react-time' import slugify from 'slugify' import PostLinkActions from '../atoms/PostLinkActions' import styles from './PostMeta.module.scss' const PostMeta = ({ post, meta }) => { const { author, updated, tags, type, linkurl } = post.frontmatter const { date, slug } = post.fields return ( ) } PostMeta.propTypes = { post: PropTypes.object.isRequired, meta: PropTypes.object.isRequired } export default PostMeta