I want to style each div within an element
I want to style each div within my element using ‘& > div’ but it is not working. Can someone please explain? This is my styles object within my class const styles = { container: { display: ‘flex’, flexFlow: ‘column’, }, informationPage: { marginTop: ’70px’, }, grid: { ‘& > div’: { backgroundColor: ‘blue’ },… Read More I want to style each div within an element