import React from 'react'; import { Button } from '@breakaway/preact-core'; import { Wizard as WizardDeprecated } from '@breakaway/preact-core/deprecated'; import ExternalLinkAltIcon from '@patternfly/react-icons/dist/esm/icons/external-link-alt-icon'; import SlackHashIcon from '@patternfly/react-icons/dist/esm/icons/slack-hash-icon'; export const WizardWithNavAnchors: React.FunctionComponent = () => { const steps = [ { name: (
PF3
), component:

Step 1: Read about PF3

, stepNavItemProps: { navItemComponent: 'a', href: 'https://www.patternfly.org/v3/', target: '_blank' } }, { name: (
PF4
), component:

Step 2: Read about PF4

, stepNavItemProps: { navItemComponent: 'a', href: 'https://www.patternfly.org/v4/', target: '_blank' } }, { name: (
Join us on slack
), component: ( ), stepNavItemProps: { navItemComponent: 'a', href: 'https://patternfly.slack.com/', target: '_blank' } } ]; const title = 'Anchor link wizard example'; return ( ); };