keycloak-scim/src/client-scopes/ClientScopesSection.tsx

11 lines
231 B
TypeScript
Raw Normal View History

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