21 lines
No EOL
414 B
TypeScript
21 lines
No EOL
414 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
import { View, Text } from "../components/themed-components";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<View>
|
|
<Text>Home</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
},
|
|
text: {
|
|
color: "#ffffff",
|
|
}
|
|
}); |