mirror of
https://github.com/myfatemi04/wheelshare-frontend.git
synced 2025-04-16 00:50:18 -04:00
14 lines
435 B
TypeScript
14 lines
435 B
TypeScript
import Card from '@material-ui/core/Card';
|
|
import Typography from '@material-ui/core/Typography';
|
|
|
|
export default function Comment({ comment }: { comment: Carpool.Comment }) {
|
|
return (
|
|
<Card style={{ display: 'flex', flexDirection: 'column', padding: '1rem' }}>
|
|
<Typography variant="subtitle2">
|
|
<b>Comment by {comment.author_id}</b>
|
|
</Typography>
|
|
<Typography variant="body2">{comment.body}</Typography>
|
|
</Card>
|
|
);
|
|
}
|