iOS Swift - iOS Basics and Setup
Identify the issue in this SwiftUI code snippet:
struct ContentView: View {
var body: some View {
Button(action: {
print("Tapped")
})
}
}