Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
let postsElements = [...posts] .reverse() .map((item) => <Post text={item.text} smallPhoto={smallPhoto} date={???} key={item.id} />)
const Post: React.FC<PropsType> = ({ text, smallPhoto, date }) => { const classes = useStyles() return ( <Paper className={classes.post}> <Grid container alignItems={'center'}> <Avatar className={classes.avatar} src={smallPhoto} alt='' /> <Grid item justify={'center'}> <Typography variant={'subtitle1'}>{text}</Typography> {date} </Grid> </Grid> </Paper> ) }
new Date().toLocaleString()
new Date(date).toLocaleString()
<Post text={item.text} smallPhoto={smallPhoto} date={???} key={item.id} />