mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
27 lines
613 B
TypeScript
27 lines
613 B
TypeScript
|
import { EnvironmentId } from '@/portainer/environments/types';
|
||
|
|
||
|
import { SidebarItem } from '../SidebarItem';
|
||
|
|
||
|
interface Props {
|
||
|
environmentId: EnvironmentId;
|
||
|
}
|
||
|
|
||
|
export function AzureSidebar({ environmentId }: Props) {
|
||
|
return (
|
||
|
<>
|
||
|
<SidebarItem
|
||
|
to="azure.dashboard"
|
||
|
params={{ endpointId: environmentId }}
|
||
|
iconClass="fa-tachometer-alt fa-fw"
|
||
|
label="Dashboard"
|
||
|
/>
|
||
|
<SidebarItem
|
||
|
to="azure.containerinstances"
|
||
|
params={{ endpointId: environmentId }}
|
||
|
iconClass="fa-cubes fa-fw"
|
||
|
label="Container instances"
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
}
|