Skip to content

Instantly share code, notes, and snippets.

@enkot
Created July 17, 2019 15:29
Show Gist options
  • Save enkot/0983311d1d21248e2634128f22463991 to your computer and use it in GitHub Desktop.
Save enkot/0983311d1d21248e2634128f22463991 to your computer and use it in GitHub Desktop.
const withPostsHOC = WrappedComponent => ({
props: WrappedComponent.props, // ['posts', ...]
data() {
return {
postsIsLoading: false,
posts: [] // fetchedPosts -> posts
}
},
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment