Used with SobjContainer component. Wraps child components with scroll component and on pull-to-refresh makes parent SobjContainer to refetch data from server
See Dreamhouse App for sample code
Import statement:
import { SobjContainer, ScrollRefresh } from 'react.force.datacontainer';SobjContainer component JSX code:
<SobjContainer id={accountId} type='Account'>
<ScrollRefresh>
<YourComponent />
</ScrollRefresh>
</SobjContainer>