struct ContentView: View {
   var body: some View {
      VStack {
         MyCustomView()
      }
   }
}
struct MyCustomView: View {
   var body: some View {
      Group {
         Text("Manchester")
         Text("Viena")
      }.font(.largeTitle)
   }
}