mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-04-18 13:04:46 +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
353 B
TypeScript
10 lines
353 B
TypeScript
import { FunctionComponent } from "react";
|
|
import { SSOResult } from "../models/SSOResult";
|
|
|
|
export const ServiceWorkerNotSupported: FunctionComponent<SSOResult> = ({ configurationName }) => (
|
|
<>
|
|
<h1>Unable to authenticate on this browser for {configurationName}</h1>
|
|
<p>Your browser is not configured to support Service Workers.</p>
|
|
</>
|
|
);
|