Skip to content

Instantly share code, notes, and snippets.

@DJanoskova
Last active April 24, 2020 21:04
Show Gist options
  • Select an option

  • Save DJanoskova/e392ac5163cf505e8738ece46560ea46 to your computer and use it in GitHub Desktop.

Select an option

Save DJanoskova/e392ac5163cf505e8738ece46560ea46 to your computer and use it in GitHub Desktop.
const NestedComponent = () => {
// ...
return (
<>
{!isLoading ? (
<>
<h2>Some heading</h2>
<p>Some description</p>
</>
) : <Spinner />}
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment