blob: f0aaba846a8d841ad0026936ba0683ed72cc6347 [file] [log] [blame]
Adrien Béraud5e9e19b2021-04-22 01:38:53 -04001import { Typography } from '@material-ui/core'
Larbi Gharibe9af9732021-03-31 15:08:01 +01002import React from 'react'
3
4function Message(props) {
5 return (
6 <div className="message">
7 <div className="message-username">{props.username}</div>
Adrien Béraud5e9e19b2021-04-22 01:38:53 -04008 <Typography className="message-text">{props.text}</Typography>
Larbi Gharibe9af9732021-03-31 15:08:01 +01009 </div>
10 )
11}
12
13export default Message