jcmcneal / react-step-wizard

A modern flexible step wizard component built for React.
MIT License
580 stars 126 forks source link

Is there a straightforward way to deploy the wizard as a modal? #92

Closed slimandslam closed 2 years ago

slimandslam commented 2 years ago

I guess this is a feature request. I'm wondering if there is a straightforward way to deploy a wizard as a modal.

masudhossain commented 2 years ago

Just create a modal component and add it there.

bundit commented 2 years ago

As @masudhossain said you can just wrap it with a modal component. EX:

<Modal isOpen={xxx}>
     <ReactStepWizard>
     .....
     </ReactStepWizard>
</Modal>