11 lines
369 B
TypeScript
Raw Normal View History

2024-06-05 06:10:11 +02:00
import React from "react";
2024-06-05 18:50:00 +02:00
import Fallback from "../../dist/account/Fallback";
2024-06-05 22:48:13 +02:00
import type { KcContext } from "./KcContext";
2024-06-05 06:10:11 +02:00
import Template from "../../dist/account/Template";
2023-04-20 02:52:49 +02:00
export default function KcApp(props: { kcContext: KcContext }) {
const { kcContext } = props;
2024-06-09 08:27:07 +02:00
return <Fallback kcContext={kcContext} Template={Template} doUseDefaultCss={true} />;
2023-04-20 02:52:49 +02:00
}