12 lines
268 B
Swift
12 lines
268 B
Swift
|
extension StartState {
|
||
|
static func reducer(state: inout StartState, action: StartAction) {
|
||
|
switch action {
|
||
|
case .loadStoredAccounts:
|
||
|
break
|
||
|
|
||
|
case .goTo(let navigation):
|
||
|
state.navigation = navigation
|
||
|
}
|
||
|
}
|
||
|
}
|