import { StyleSheet, View, Text } from 'react-native'; import {useThemeColor} from "../hooks/hooks"; export default function Page() { const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center", justifyContent: "center", }, text: { color: useThemeColor("color"), fontSize: 70, fontWeight: "bold" } }); return ( Home ); }