const Journey = ({ title, description, tags, year, url, isLunched }) => { return (

{title}

{description}

{tags.map(tag => (

{`#${tag}`}

))}
) } export default Journey;