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' export default function ReadNext({ title, to }) { return ( {title} ) } ReadNext.propTypes = { title: PropTypes.string.isRequired, to: PropTypes.string.isRequired, }