import { Dialog, DialogContent, DialogTitle, Typography } from '@mui/material' import React from 'react' const MeetupDetails = (props) => { let date = new Date(props.date); return ( Caffeine and Coin Date & Time: {date.getMonth() + 1}/{date.getDay()}/{date.getFullYear()} at 6:00pm Location: Sketchy railway tunnel on the North Side Come hang out and dodge hobo knifings while discussing and learning about bitcoin! ) } export default MeetupDetails