import React from 'react' import PropTypes from 'prop-types' import Icon from './icon' import Link from './link' import { Label } from './typography' import classes from '../styles/readnext.module.sass' const ReadNext = ({ title, to }) => (
{title}
) ReadNext.propTypes = { title: PropTypes.string.isRequired, to: PropTypes.string.isRequired, } export default ReadNext