import React from 'react'; import { ProgressStepper, ProgressStep, Checkbox } from '@patternfly/react-core'; export const ProgressStepperCompact: React.FunctionComponent = () => { const [isVertical, setIsVertical] = React.useState(false); const [isCenterAligned, setIsCenterAligned] = React.useState(false); return (
First step Second step Third step
); };