Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1x 1x | import {createContext} from 'react'
import {ALIGNMENT, DESIGN, JUSTIFY_CONTENT} from '../settings.js'
export const defaultStepsContext = {
as: 'li',
useContextRef: () => null,
useContextUnRef: () => null,
hasConnector: true,
design: DESIGN.DEFAULT,
alignment: ALIGNMENT.HORIZONTAL,
justifyContent: JUSTIFY_CONTENT.LEGACY,
steps: 0
}
const StepsContext = createContext(defaultStepsContext)
export default StepsContext
|