File size: 155 Bytes
1e92f2d |
1 2 3 4 5 |
import type { State } from './reducer';
export const getState = ( state: State ) => state;
export const getStepData = ( state: State ) => state.stepData;
|
1e92f2d |
1 2 3 4 5 |
import type { State } from './reducer';
export const getState = ( state: State ) => state;
export const getStepData = ( state: State ) => state.stepData;
|