import React from 'react'; import styles from '../css/card.module.css'; export function Card({ link, githubLink, imageSource, title, description, label}) { if (githubLink) { return (

{title}

{description &&

{description}

}
github {label}
) } else if (link){ return ( {imageSource && {`image}

{title}

{description}

) }; } export function CardWrapper({children}) { return (
{children}
) }