/** @jsx jsx */ import { jsx } from "theme-ui" type ProjectCardProps = { link: string title: string children: React.ReactNode bg: string } const ProjectCard = ({ link, title, children, bg }: ProjectCardProps) => (
{children}
{title}
) export default ProjectCard