keycloak-scim/src/sessions/SessionsSection.tsx

14 lines
251 B
TypeScript
Raw Normal View History

import { PageSection } from "@patternfly/react-core";
import React from "react";
export const SessionsSection = () => {
return (
<>
<>
<PageSection variant="light">The Sessions Page</PageSection>
</>
;
</>
);
};