mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
import { PageHeader } from '@@/PageHeader';
|
|
|
|
import { EdgeStacksDatatable } from './EdgeStacksDatatable';
|
|
|
|
export function ListView() {
|
|
return (
|
|
<>
|
|
<PageHeader title="Edge Stacks list" breadcrumbs="Edge Stacks" reload />
|
|
|
|
<EdgeStacksDatatable />
|
|
</>
|
|
);
|
|
}
|