mirror of https://github.com/portainer/portainer
22 lines
575 B
TypeScript
22 lines
575 B
TypeScript
![]() |
import { InformationPanel } from '@@/InformationPanel';
|
||
|
import { PageHeader } from '@@/PageHeader';
|
||
|
|
||
|
import { EdgeJobsDatatable } from './EdgeJobsDatatable';
|
||
|
|
||
|
export function ListView() {
|
||
|
return (
|
||
|
<>
|
||
|
<PageHeader title="Edge Jobs" breadcrumbs="Edge Jobs" reload />
|
||
|
|
||
|
<InformationPanel title="Information">
|
||
|
<p className="small text-muted">
|
||
|
Edge Jobs requires Docker Standalone and a cron implementation that
|
||
|
reads jobs from <code>/etc/cron.d</code>
|
||
|
</p>
|
||
|
</InformationPanel>
|
||
|
|
||
|
<EdgeJobsDatatable />
|
||
|
</>
|
||
|
);
|
||
|
}
|