export const Content = async ({ api }) => {
const items = await api.getAll.query({ watched: true })
if (!items) {
return <EmptyState />
}
return (
<CardsContainer>
{items.map((i) => {
return <Card key={i.id} imgSrc={buildImgSrc(i.posterPath)} {...i} />
})}
</CardsContainer>
)
}