import { Launch } from '@material-ui/icons'; type Props = { title: string, description: string, tags: string[], year?: string | number, url?: string, isLunched?: boolean } const Journey = ({ title, description, tags, year, url, isLunched }: Props) => { return (

{title} { isLunched && }

{description}

{tags.map((tag, i) => (

{`#${tag}`}

))}

built and designed at {year}

) } export default Journey;