sso-poc-marn/app/ssoCallback.tsx

9 lines
177 B
TypeScript

import {Text, View} from "react-native";
export default function ssoCallbackScreen() {
return (
<View>
<Text>ssoCallback</Text>
</View>
)
}