@pagerduty/backstage-plugin
Version:
A Backstage plugin that integrates towards PagerDuty
30 lines (27 loc) • 901 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { Grid, Typography } from '@material-ui/core';
import EmptyStateImage from '../../assets/emptystate.svg';
const ChangeEventEmptyState = () => {
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: "No change events to display yet." }) }),
/* @__PURE__ */ jsx(Grid, { item: true, xs: 12, children: /* @__PURE__ */ jsx(
"img",
{
src: EmptyStateImage,
alt: "EmptyState",
"data-testid": "emptyStateImg"
}
) })
]
}
);
};
export { ChangeEventEmptyState };
//# sourceMappingURL=ChangeEventEmptyState.esm.js.map