Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Last active December 3, 2017 16:32
Show Gist options
  • Save MicroBenz/4dfa363e719164082557e8c4ebd73161 to your computer and use it in GitHub Desktop.
Save MicroBenz/4dfa363e719164082557e8c4ebd73161 to your computer and use it in GitHub Desktop.
Recompose
import React from 'react';
import { branch, renderComponent } from 'recompose';
const enhance = branch(props => props.loading, renderComponent(Loader));
const DisplayDataWithLoading = enhance(props => <DisplayData data={props.data} />);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment