import ExternalLinkIcon from "./ExternalLinkIcon"; export interface ProjectProps { label: string date: string url: string } export default function Project({ label, date, url }: ProjectProps) { return (

{label}

{date}
) }