mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
PublicDashboards: delete button added in public dashboard table in order to delete a public dashboard. Co-authored-by: Jeff Levin <jeff@levinology.com>
16 lines
384 B
TypeScript
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;
|