import React from "react"; import { View } from "tamagui"; import { ItemListSection } from "~/components/item/ItemListSection"; import ScreenLayout from "~/components/layout/ScreenLayout"; import { useBookmarkStore, useWatchHistoryStore } from "~/stores/settings"; export default function HomeScreen() { const { bookmarks } = useBookmarkStore(); const { watchHistory } = useWatchHistoryStore(); return ( x.item)} /> ); }