mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import React from 'react';
|
|
|
|
import { PublicDashboardListTable } from './components/PublicDashboardListTable/PublicDashboardListTable';
|
|
|
|
export const ListPublicDashboardPage = ({}) => {
|
|
return <PublicDashboardListTable />;
|
|
};
|
|
|
|
export default ListPublicDashboardPage;
|