@pagerduty/backstage-plugin
Version:
A Backstage plugin that integrates towards PagerDuty
30 lines (27 loc) • 950 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Grid, Typography } from '@material-ui/core';
import ForbiddenStateImage from '../../assets/forbiddenstate.svg';
const ChangeEventForbiddenState = () => {
return /* @__PURE__ */ jsxs(
Grid,
{
container: true,
justifyContent: "center",
direction: "column",
alignItems: "center",
children: [
/* @__PURE__ */ jsx(Grid, { item: true, xs: 12, children: /* @__PURE__ */ jsx(Typography, { variant: "h5", children: "Feature not available with your account or token." }) }),
/* @__PURE__ */ jsx(Grid, { item: true, xs: 12, children: /* @__PURE__ */ jsx(
"img",
{
src: ForbiddenStateImage,
alt: "ForbiddenState",
"data-testid": "forbiddenStateImg"
}
) })
]
}
);
};
export { ChangeEventForbiddenState };
//# sourceMappingURL=ChangeEventForbiddenState.esm.js.map