11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
import { View } from "react-native";
|
|
import Text from "@components/Text";
|
|
|
|
export default function Tab() {
|
|
return (
|
|
<View style={{ justifyContent: "center", alignItems: "center", flex: 1 }}>
|
|
<Text>Tab REVIEW</Text>
|
|
</View>
|
|
);
|
|
}
|