conversations-classic-ios/ConversationsClassic/AppCore/Reducers/ChatsReducer.swift

12 lines
248 B
Swift
Raw Normal View History

2024-06-19 15:15:27 +00:00
extension ChatsState {
static func reducer(state: inout ChatsState, action: ChatsAction) {
switch action {
case .chatsListUpdated(let chats):
state.chats = chats
default:
break
}
}
}