У меня есть следующий код:
const useStyles = makeStyles(theme => ({
row: {
'& > *': {
fontSize: 12,
fontWeight: 'bold',
color: 'rgba(33,34,34,0.5)',
letterSpacing: 0.5,
lineHeight: '16px',
},
},
}));
кто-нибудь может объяснить мне, что означает эта строка:
'& > *': {
Оцените.