I am running React 16.3.1 and Styled Components 3.2.5 currently and am hitting an issue trying to use React.forwardRef.
I have an Input component that is comprised of a wrapper div that holds the label and input field. However, I want to be able to forward a ref directly to the input field and not have to traverse to it via the primary wrapping div.
const Input = React.forwardRef((props, ref) => (
<Wrapper>
<Label htmlFor={props.id} required={props.required}>
{props.label}
</Label>
<InputField
id={props.id}
...
/>
</Wrapper>
));
That is a simplified version of my component. However, this creates the following error:
Uncaught Error: Cannot create styled-component for component: [object Object]
Maybe upgrading Styled Components to v4 would help? But is there any solution before upgrading that I haven't found yet?
Thank you.
ref
. Otherwise, I was able to make this work. – Doubleheader