import { View, Text, ScrollView } from "react-native"; import { useTheme } from "../../../components/theme"; import { CATEGORIES } from "../../../lib/constants"; export default function ExploreScreen() { const theme = useTheme(); return ( {CATEGORIES.map((cat) => ( {cat.icon === "construct-outline" ? "🔧" : "📋"} {cat.name} ))} ); }