Skip to content

Instantly share code, notes, and snippets.

@kodeFant
Created March 30, 2020 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kodeFant/aea1062b3062f506f0e34d619a01ea94 to your computer and use it in GitHub Desktop.
Save kodeFant/aea1062b3062f506f0e34d619a01ea94 to your computer and use it in GitHub Desktop.
return foldRemoteData(
() => <FetchPosts getPosts={getPosts} />,
() => <Loading />,
(error: Error) => <Failure error={error} />,
(data: Post[]) => <BlogPosts data={data} />
)(posts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment