i'm learning styled components...
const Container = styled.div`
background-color : black;
& img{
width: 80px;
}
`
vs
const Container = styled.div`
background-color : black;
> img{
width: 80px;
}
`
both work just fine.... when should I use respectively? when are they uninterchangeable?