Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uzeWizardStep causes steps to not render #49

Open
sikula opened this issue Nov 17, 2020 · 1 comment
Open

uzeWizardStep causes steps to not render #49

sikula opened this issue Nov 17, 2020 · 1 comment

Comments

@sikula
Copy link

sikula commented Nov 17, 2020

This does not render the steps

const FirstStep = () => {
  const { isActive } = useWizardStep()
  return isActive && <div>First Step</div>
}

const SecondStep = () => {
  const { isActive } = useWizardStep()
  return isActive && <div>Second Step</div>
}

const App = () => {
  return (
    <Wizard>
      <FirstStep />
      <SecondStep />
    </Wizard>
  )
}

This does work

const FirstStep = () => {
  return (
    <WizadStep>
        {({ isActive }) => isActive && <div>First Step</div>
    </WizardStep>
  )
}

const SecondStep = () => {
  return (
    <WizardStep>
      {({ isActive }) => isActive && <div>Second Step</div>
    </WizardStep>
  )
}

const App = () => {
  return (
    <Wizard>
        <FirstStep />
        <SecondStep />
    </Wizard>
  )
}

@Jibbedi
Copy link
Owner

Jibbedi commented Nov 19, 2020

Thanks for the heads up. I'll take a look at it :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants