How to use a timer with SwiftUI
struct ContentView: View {@State var currentDate = Date()let timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect()var body: some View {Text("\(currentDate)").onReceive(timer) { input incurrentDate = input}}}
