keycloak-scim/src/sessions/SessionsSection.tsx
Eugenia 9fd54eb964
Adds realm roles section to app and storybook (#79)
* 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>
2020-09-18 10:04:55 +02:00

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>
</>
;
</>
);
};