beforeStepChange callback
In this version, the ability to add the beforeStepChange
callback function to each individual Step component is added.
When creating a Step component, you can do this:
<Step component={Step1} beforeStepChange={() => { console.log('i will be called when user is moving to another step'); } />