Chris

Results 2 comments of Chris

Yes. You need to use React's `forwardRef` function in the `CustomStyledAComponent` like so: ``` const CustomStyledAComponent = React.forwardRef((props, ref) => ( {props.children} )); ``` As `Link` wants to pas a...

@Rarst Did you manage to find a solution?