{
profile.auth !== null && library.type_names.length > 0 ?
:
null
}
{
profile.auth === null ?
Library is only availavle for logged in users
:
library.type_names.length === 0 ?
:
library.selected === null ?
:
library.lib_items.length === 0 ?
There are no items for the selected type
:
{library.lib_items.map((libItem, index) => (
))}
}