export const ProjectCard = function ProjectCard(props: ProjectProps) { return (
props.repo && open(props.repo, "_blank")} >

{props.title}

{props.repo && ( e.stopPropagation()} > Active )} {!props.repo && !props.wip && Dead} {props.wip && WIP}

{props.summary}

{props.tech}

); }; type ProjectProps = { title: string; repo?: string; summary: string; tech: string; wip?: boolean; };