31 lines
623 B
JavaScript
31 lines
623 B
JavaScript
![]() |
"use strict";
|
|||
|
/*
|
|||
|
import { useState, memo } from "react";
|
|||
|
import { KcProperties, Template } from "./Template";
|
|||
|
import { assert } from "evt/tools/typeSafety/assert";
|
|||
|
import { keycloakPagesContext } from "./keycloakFtlValues";
|
|||
|
|
|||
|
export type Props = {
|
|||
|
properties: KcProperties;
|
|||
|
};
|
|||
|
|
|||
|
export const LoginPage = memo((props: Props)=>{
|
|||
|
|
|||
|
|
|||
|
const [{ }] = useState(() => {
|
|||
|
|
|||
|
assert(keycloakPagesContext !== undefined);
|
|||
|
|
|||
|
return keycloakPagesContext;
|
|||
|
|
|||
|
});
|
|||
|
|
|||
|
|
|||
|
return (
|
|||
|
<Template/>
|
|||
|
);
|
|||
|
|
|||
|
});
|
|||
|
*/
|
|||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|||
|
//# sourceMappingURL=LoginPage.js.map
|