2025-04-01 10:38:02 +09:00

16 lines
346 B
TypeScript

import { Page } from 'app/core/components/Page/Page';
import { SnapshotListTable } from './components/SnapshotListTable';
export const SnapshotListPage = ({}) => {
return (
<Page navId="dashboards/snapshots">
<Page.Contents>
<SnapshotListTable />
</Page.Contents>
</Page>
);
};
export default SnapshotListPage;