10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
|
import {Text, View} from "react-native";
|
||
|
|
||
|
export default function ssoLogoutScreen() {
|
||
|
return (
|
||
|
<View>
|
||
|
<Text>SSO logout</Text>
|
||
|
</View>
|
||
|
)
|
||
|
}
|