mirror of https://github.com/portainer/portainer
28 lines
607 B
TypeScript
28 lines
607 B
TypeScript
import { Layout } from 'lucide-react';
|
|
|
|
import { EnvironmentId } from '@/react/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 (
|
|
<SidebarItem
|
|
to={`${platformPath}.dashboard`}
|
|
params={{ endpointId: environmentId }}
|
|
icon={Layout}
|
|
label="Dashboard"
|
|
data-cy={dataCy}
|
|
/>
|
|
);
|
|
}
|