keycloak-scim/src/events/EventsSection.tsx

11 lines
218 B
TypeScript
Raw Normal View History

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