@veecode-platform/plugin-kong-service-manager
Version:
27 lines (24 loc) • 670 B
JavaScript
import { EmptyState } from '@backstage/core-components';
import { Button } from '@material-ui/core';
import React from 'react';
const EmptyStateComponent = () => {
return /* @__PURE__ */ React.createElement(
EmptyState,
{
missing: "data",
title: "No Kong Data",
description: "This component has Kong Plugin enabled, but no data was found...",
action: /* @__PURE__ */ React.createElement(
Button,
{
variant: "contained",
color: "primary",
href: "/"
},
"Back to Home"
)
}
);
};
export { EmptyStateComponent };
//# sourceMappingURL=EmptyStateComponent.esm.js.map