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:
Stephen Celis
2021-12-16 17:14:18 -05:00
committed by GitHub
parent ff41e51a4e
commit fe97ad6027
3 changed files with 15 additions and 7 deletions

View File

@@ -3,7 +3,8 @@ import ComposableArchitecture
import SwiftUI
import UIKit
struct CounterState: Equatable {
struct CounterState: Equatable, Identifiable {
let id = UUID()
var count = 0
}