import react from 'react' type ProjectElementProps = { image_src?: string, description: string, url: string } function ProjectElement({ image_src, description, url }: ProjectElementProps) { return ( { image_src && }

{description}

) } export default ProjectElement