import { useState } from 'react'; import { Hint, HintTitle, HintBody, Button, Checkbox } from '@patternfly/react-core'; export const HintActionsWithNoOffset: React.FunctionComponent = () => { const [hasNoActionsOffset, setHasNoActionsOffset] = useState(false); const toggleOffset = (checked: boolean) => { setHasNoActionsOffset(checked); }; const actions = ; return ( <> toggleOffset(checked)} aria-label="remove actions offset" id="toggle-actions-offset" name="toggle-actions-offset" />
Do more with Find it Fix it capabilities Upgrade to Red Hat Smart Management to remediate all your systems across regions and geographies.
); };