greater than sign(>) refers to the direct parent.
ampersand sign(&) also does refer to its parent.
const Container = styled.div`
> p{
color:red;
}
`
above equals to this ㄱ
const Container = styled.div`
& p{
color:red;
}
`
both versions will make the p tag, which is the direct child of Container, have a red font color....
is that wrong? if so, how are they different?