mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-24 12:14:25 +01:00
Fix UIKit Case Study warning (#924)
* Fix UIKit Case Study warning * wip Co-authored-by: Brandon Williams <mbrandonw@hey.com>
This commit is contained in:
@@ -3,7 +3,8 @@ import ComposableArchitecture
|
||||
import SwiftUI
|
||||
import UIKit
|
||||
|
||||
struct CounterState: Equatable {
|
||||
struct CounterState: Equatable, Identifiable {
|
||||
let id = UUID()
|
||||
var count = 0
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user