13 lines
188 B
TypeScript
13 lines
188 B
TypeScript
import { View, Text } from "react-native";
|
|
import React from "react";
|
|
|
|
const Explore = () => {
|
|
return (
|
|
<View>
|
|
<Text>SignIn</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default Explore;
|