grafana/public/app/features/manage-dashboards/PublicDashboardListPage.tsx
juanicabanas 48120f2594
PublicDashboards: Delete public dashboard in public dashboard table (#57766)
PublicDashboards: delete button added in public dashboard table in order to delete a public dashboard.

Co-authored-by: Jeff Levin <jeff@levinology.com>
2022-10-31 17:16:07 -04:00

16 lines
384 B
TypeScript

import React from 'react';
import { Page } from 'app/core/components/Page/Page';
import { PublicDashboardListTable } from './components/PublicDashboardListTable/PublicDashboardListTable';
export const ListPublicDashboardPage = ({}) => {
return (
<Page navId="dashboards/public">
<PublicDashboardListTable />
</Page>
);
};
export default ListPublicDashboardPage;