import Card from '@material-ui/core/Card'; import Typography from '@material-ui/core/Typography'; export default function Comment({ comment }: { comment: Carpool.Comment }) { return ( Comment by {comment.author_id} {comment.body} ); }