iOS Swift - SwiftUI Basics
What is the issue with this SwiftUI code snippet?
struct ContentView: View {
var body: some View {
Text("Hello")
Text("World")
}
}