import { r2a } from '@/react-tools/react2angular'; import { SidebarMenuItem } from '@/portainer/components/sidebar/SidebarMenuItem'; import type { EnvironmentId } from '@/portainer/environments/types'; interface Props { environmentId: EnvironmentId; } export function AzureSidebar({ environmentId }: Props) { return ( <> Dashboard Container instances ); } export const AzureSidebarAngular = r2a(AzureSidebar, ['environmentId']);