import React from 'react'; import Button from '../../button/button'; import { useStateValue } from '../../../store/store'; const PreviousStepButton = ( { children, customizeStep } ) => { const [ { currentIndex }, dispatch ] = useStateValue(); return ( ); }; export default PreviousStepButton;