31 lines
521 B
TypeScript
31 lines
521 B
TypeScript
|
||
/*
|
||
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/>
|
||
);
|
||
|
||
});
|
||
*/
|
||
|
||
export {}; |