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}

{description}

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

{`#${tag}`}

))}
) } export default Journey;