19 lines
433 B
TypeScript
19 lines
433 B
TypeScript
import SignOutButton from "@/components-old/sign-out-button/sign-out-button.component";
|
|
import { StyleSheet, Text, View } from "react-native";
|
|
export default function Tab() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text>Tab [Home|Settings]</Text>
|
|
<SignOutButton />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
});
|