2021-08-04 06:48:57 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { BrowserRouter } from 'react-router-dom';
|
|
|
|
import { AuthorizerProvider } from '@authorizerdev/authorizer-react';
|
|
|
|
import Root from './Root';
|
|
|
|
|
|
|
|
export default function App() {
|
2021-10-03 21:47:50 +00:00
|
|
|
// @ts-ignore
|
|
|
|
const globalState: Record<string, string> = window['__authorizer__'];
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
justifyContent: 'center',
|
|
|
|
flexDirection: 'column',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
justifyContent: 'center',
|
|
|
|
marginTop: 20,
|
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
src={`${globalState.organizationLogo}`}
|
|
|
|
alt="logo"
|
|
|
|
style={{ height: 60, width: 60, objectFit: 'cover' }}
|
|
|
|
/>
|
|
|
|
<h1>{globalState.organizationName}</h1>
|
|
|
|
</div>
|
2022-03-08 07:06:26 +00:00
|
|
|
<div className="container">
|
2021-10-03 21:47:50 +00:00
|
|
|
<BrowserRouter>
|
|
|
|
<AuthorizerProvider
|
|
|
|
config={{
|
2022-01-17 06:02:13 +00:00
|
|
|
authorizerURL: window.location.origin,
|
2021-10-03 21:47:50 +00:00
|
|
|
redirectURL: globalState.redirectURL,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Root />
|
|
|
|
</AuthorizerProvider>
|
|
|
|
</BrowserRouter>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2021-08-04 06:48:57 +00:00
|
|
|
}
|