Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

You are trying to create a styled element with an undefined component.You may have forgotten to import it.

// fails
const ExtendedComponent = styled(OriginalComponent)`
  [Your awesome styles here]
`;

// works
const ExtendedComponent = styled(props => <OriginalComponent {...props} />)`
  [Your awesome styles here]
`;
 
PREVIOUS NEXT
Tagged: #You #create #styled #element #undefined #forgotten #import
ADD COMMENT
Topic
Name
5+2 =