import React from 'react'; import { Button } from '@patternfly/react-core'; import { useNavigate } from 'react-router-dom'; import { selectSelectedBlueprintId } from '../../store/BlueprintSlice'; import { useAppSelector } from '../../store/hooks'; import { resolveRelPath } from '../../Utilities/path'; export const EditBlueprintButton = () => { const navigate = useNavigate(); const selectedBlueprintId = useAppSelector(selectSelectedBlueprintId); return ( ); };