27.3 Adding the TabView Container
With the ContentView.swift file loaded into the code editor, delete the default “Hello World” Text view and add a TabView as follows:
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
}
}
}