24.2 Designing the App
Begin by editing the ContentView.swift file and modifying the body declaration so that it reads as follows:
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
TabView {
FirstTabView()
.tabItem {
Image(systemName: "01.circle")
Text...