mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-04-19 05:23:50 +02:00
Added an example of an authentication protected page (tenders) Added an example with the built in proxy (to combat CORS) (tendersguru)
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
import { FunctionComponent } from "react";
|
|
import { SSOResult } from "../models/SSOResult";
|
|
|
|
export const CallBackSuccess: FunctionComponent<SSOResult> = ({ configurationName }) => (
|
|
<>
|
|
<h1>Authentication complete for {configurationName}</h1>
|
|
<p>You will be redirected...</p>
|
|
</>
|
|
);
|