import { Layout } from 'react-feather'; import { EnvironmentId } from '@/portainer/environments/types'; import { AutomationTestingProps } from '@/types'; import { SidebarItem } from '../SidebarItem'; interface Props extends AutomationTestingProps { environmentId: EnvironmentId; platformPath: string; } export function DashboardLink({ environmentId, platformPath, 'data-cy': dataCy, }: Props) { return ( ); }