9fd54eb964
* add Realm Roles page * add section for no realm roles * update role-model, fixed UI to match designs * fix paths * add storybook demo and role actions kebab * fix build and clean up * fix formatting * fix lint * fix test and update snapshot * fix storybook demo * update snapshot after rebase * PR feedback from Stan * add back pf addons * Update src/realm-roles/RealmRolesSection.tsx Co-authored-by: Stan Silvert <ssilvert@redhat.com> * fix format * localize NoRealmRoles component * fix formatting * changes to PR suggested by Sarah Co-authored-by: Stan Silvert <ssilvert@redhat.com>
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import { PageSection } from "@patternfly/react-core";
|
|
import React from "react";
|
|
|
|
export const SessionsSection = () => {
|
|
return (
|
|
<>
|
|
<>
|
|
<PageSection variant="light">The Sessions Page</PageSection>
|
|
</>
|
|
;
|
|
</>
|
|
);
|
|
};
|