UNPKG
@wenn/onb
Version:
latest (1.0.0)
1.0.0
onb-core
@wenn/onb
/
redux
/
actions
/
stepper.actions.js
9 lines
(7 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
CURRENT_STEPPER
}
from
'../constants'
;
export
function
currentStepper
(
currentStep
) {
return
{
type
:
CURRENT_STEPPER
, currentStep }; }