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 (
) } export default Journey;