1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00
portainer/app/react/sidebar/items/DashboardLink.tsx

27 lines
608 B
TypeScript

import { Layout } from 'react-feather';
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}
/>
);
}