11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
function Documents() {
|
|
return (
|
|
<View>
|
|
<Text>Documents</Text>
|
|
</View>
|
|
);
|
|
}
|
|
export default Documents;
|