keycloak-scim/src/ForbiddenSection.tsx
Stan Silvert 49284a0f11
Implement basic access control. (#183)
* Implement basic access control.

* Fix formatting
2020-10-21 07:31:41 -04:00

5 lines
96 B
TypeScript

import React from "react";
export const ForbiddenSection = () => {
return <>Forbidden</>;
};