import React from 'react'; import style from './item.module.css'; import { Link } from 'gatsby'; interface ItemProps { to: string; title: string; subtitle?: string; } export default (props: ItemProps): JSX.Element => (

{props.title}

{props.subtitle}

);