its hard to read
isLoading === 'loading'
? null
: data.record.note.length <= 0
? null
: <RenderUrComponenet />
// or
isLoading === 'loading'
? <LoadingSpinner />
: data.record.note.length <= 0
? <EmptyState />
: <RenderUrComponenet />
Fragment
<React.Fragment>...</React.Fragment>
// or just use
<> ...</>
Обсуждают сегодня