sso-poc-marn/app/ssoCallback.tsx

10 lines
177 B
TypeScript
Raw Permalink Normal View History

2024-05-14 13:43:07 +02:00
import {Text, View} from "react-native";
export default function ssoCallbackScreen() {
return (
<View>
<Text>ssoCallback</Text>
</View>
)
}