import React from "react"; import { Icon } from "./Icon"; import { link } from "fs"; export function ProjectCard(props: { title: string; description: string; link: string; }) { return (

{props.title}

{props.description}

); }