My specific goal is to use the ScrollTo method of a ScrollView but maintain functional component structure.
More generally this requires getting ref to the current compo
Personally I prefer to initiate Ref as a prop
withProps(() => ({ ref: React.createRef(), })),
And then just pass it to your stateless component
const MyComponent = ({ ref }) =>