grafana/public/app/features/manage-dashboards/PublicDashboardListPage.tsx

18 lines
406 B
TypeScript
Raw Normal View History

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