Skip to content

Instantly share code, notes, and snippets.

@grantglidewell
Last active August 1, 2018 20:53
Show Gist options
  • Save grantglidewell/1c165d3fdbe818f9a94183c6d8464cab to your computer and use it in GitHub Desktop.
Save grantglidewell/1c165d3fdbe818f9a94183c6d8464cab to your computer and use it in GitHub Desktop.
export function WithLoader(props) {
return props.condition ? (
props.children
) : (
<section
className={styles.Loading}
style={{ height: props.height, width: props.width }}>
<h3>{props.message}</h3>
<Loader />
</section>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment