This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
interaktive-systeme/app/index.tsx
2023-12-01 08:57:04 +01:00

25 lines
No EOL
567 B
TypeScript

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 (
<View style={styles.container}>
<Text style={styles.text}>Home</Text>
</View>
);
}