Open elliotBraem opened 1 year ago
Declaring a styled component and then using it to define another:
const Box = styled.div` background-color: white; margin: 10px; `; const FirstBox = styled(Box)` height: 200px; `; const SecondBox = styled(Box)` height: 400px; `; const ThirdBox = styled(Box)` flex-grow: 1; `;
Error:
t.split is not a function
Try it out
+1 would be awesome to resolve this
I posted a PR for this issue https://github.com/NearSocial/VM/pull/166
Declaring a styled component and then using it to define another:
Error:
Try it out