mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
406 B
TypeScript
18 lines
406 B
TypeScript
|
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;
|