mirror of https://github.com/portainer/portainer
34 lines
837 B
TypeScript
34 lines
837 B
TypeScript
import { withLimitToBE } from '@/react/hooks/useLimitToBE';
|
|
|
|
import { InformationPanel } from '@@/InformationPanel';
|
|
import { TextTip } from '@@/Tip/TextTip';
|
|
import { PageHeader } from '@@/PageHeader';
|
|
|
|
import { Datatable } from './Datatable';
|
|
|
|
export default withLimitToBE(WaitingRoomView);
|
|
|
|
function WaitingRoomView() {
|
|
return (
|
|
<>
|
|
<PageHeader
|
|
title="Waiting Room"
|
|
breadcrumbs={[
|
|
{ label: 'Edge Devices', link: 'edge.devices' },
|
|
{ label: 'Waiting Room' },
|
|
]}
|
|
/>
|
|
|
|
<InformationPanel>
|
|
<TextTip color="blue">
|
|
Only environments generated from the AEEC script will appear here,
|
|
manually added environments and edge devices will bypass the waiting
|
|
room.
|
|
</TextTip>
|
|
</InformationPanel>
|
|
|
|
<Datatable />
|
|
</>
|
|
);
|
|
}
|