portainer/app/react/edge/edge-jobs/ListView/ListView.tsx

22 lines
575 B
TypeScript
Raw Normal View History

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 />
</>
);
}