keycloak-scim/src/user/UsersSection.tsx

11 lines
216 B
TypeScript
Raw Normal View History

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