13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
|
import React from "react";
|
||
|
import { PageSection } from "@patternfly/react-core";
|
||
|
|
||
|
import "./RealmSettingsSection.css";
|
||
|
|
||
|
export const ProfilesTab = () => {
|
||
|
return (
|
||
|
<PageSection variant="light" padding={{ default: "noPadding" }}>
|
||
|
<h1>Profiles Tab</h1>
|
||
|
</PageSection>
|
||
|
);
|
||
|
};
|