import React from 'react'; import { ProgressStepper, ProgressStep, Popover } from '@breakaway/preact-core'; export const PopoverProgressStep = () => ( ( First step popover} bodyContent={
Additional info or help text content.
} triggerRef={stepRef} position="right" /> )} > First step
( Second step popover} bodyContent={
Additional info or help text content.
} triggerRef={stepRef} position="right" /> )} > Second step
( Third step popover} bodyContent={
Additional info or help text content.
} triggerRef={stepRef} position="right" /> )} isCurrent > Third step
Fourth step
);