|
1
|
/* eslint-disable import/no-extraneous-dependencies */ |
|
2
|
import { createContext } from '@wordpress/element'; |
|
3
|
|
|
4
|
const WizardContext = createContext({ |
|
5
|
isLoading: false, |
|
6
|
isFirstStep: true, |
|
7
|
isLastStep: false, |
|
8
|
stepCount: 0, |
|
9
|
activeStep: 0, |
|
10
|
}); |
|
11
|
|
|
12
|
export default WizardContext; |
|
13
|
|