Enabling shorter import paths [automatic]
This commit is contained in:
31
lib/LoginPage.js
Normal file
31
lib/LoginPage.js
Normal file
@ -0,0 +1,31 @@
|
||||
"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
|
Reference in New Issue
Block a user