19 lines
No EOL
334 B
TypeScript
19 lines
No EOL
334 B
TypeScript
import { Text, StyleSheet } from 'react-native';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Text style={styles.lightThemeText}>Home Page</Text>
|
|
|
|
|
|
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
lightThemeText: {
|
|
color: "#242c40"
|
|
},
|
|
darkThemeText: {
|
|
color: "#d0d0c0"
|
|
}
|
|
}); |