12 lines
256 B
Swift
12 lines
256 B
Swift
|
extension SharingState {
|
||
|
static func reducer(state: inout SharingState, action: SharingAction) {
|
||
|
switch action {
|
||
|
case .showSharing(let shown):
|
||
|
state.sharingShown = shown
|
||
|
|
||
|
default:
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
}
|