/** * This file has been claimed for ownership from @keycloakify/keycloak-account-ui version 260700.0.3. * To relinquish ownership and restore this file to its original content, run the following command: * * $ npx keycloakify own --path "account/components/page/Page.tsx" --revert */ /* eslint-disable */ // @ts-nocheck import { PageSection, Text, TextContent, Title } from "../../../shared/@patternfly/react-core"; import { PropsWithChildren } from "react"; type PageProps = { title: string; description: string; }; export const Page = ({ title, description, children }: PropsWithChildren) => { return ( <>
NEXUS / Identity control {title} {description}
{children} ); };