Here is my code which is repeating pretty often, and I would like to avoid this:
{ isDataLoading ? (
<MyLoadingComponent />
) : !products ? (
<ThereIsNoDataComponent />
) : ( <div>Some text</div> )
}
How could I write this to avoid nested ternary operators?
Thanks guys
Cheers