Files
keycloak_theme/src/lib/LoginPage.tsx
2021-03-02 12:17:24 +01:00

31 lines
521 B
TypeScript
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.

/*
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 {};