6ed3300183
Generated by create-expo-app 3.3.0.
15 lines
231 B
TypeScript
15 lines
231 B
TypeScript
import { StyleSheet, Text, View } from "react-native";
|
|
import React from "react";
|
|
|
|
const Page = () => {
|
|
return (
|
|
<View>
|
|
<Text>Page</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default Page;
|
|
|
|
const styles = StyleSheet.create({});
|