Files
keycloak_theme/lib/LoginPage.js
2021-03-02 11:20:31 +00:00

31 lines
623 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"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