Is there anyway we can track the styled component to it's origin? See example below
import {Button} from 'design-system'
import {styled} from 'react-emotion'
...
const StyledButton = styled(Button)`
//some css here
`
const Container = () => {
return <StyledButton>
}
in this case, I would consider StyledButton IS Button from 'design-system'
but in the generated report, I think we are only getting
is there any way we can detect this type of situation?
Is there anyway we can track the styled component to it's origin? See example below
in this case, I would consider StyledButton IS Button from 'design-system'
but in the generated report, I think we are only getting
is there any way we can detect this type of situation?