You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/sidebar/items/VolumesLink.tsx

28 lines
600 B

import { Database } 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 VolumesLink({
environmentId,
platformPath,
'data-cy': dataCy,
}: Props) {
return (
<SidebarItem
to={`${platformPath}.volumes`}
params={{ endpointId: environmentId }}
icon={Database}
label="Volumes"
data-cy={dataCy}
/>
);
}