TabBar with WebView Url

Can anyone help me please... in the contentview i put this but only tabbar i have no and the urlwebview i dont know where to put it, do i need to put in the contentview or in the other swiftfile bars?

import SwiftUI

struct ContentView : View {

     

    var body: some View {

            

        TabView {

            

                ViewA()

                    .tabItem(){

                        Image(systemName: "house.fill")

                        Text("Home")

                    }

                

                ViewB()

                    .tabItem(){

                        Image(systemName: "person.fill")

                        Text("Log In")

                    }

                

                ViewC()

                    .tabItem(){

                        Image(systemName: "newspaper.fill")

                        Text("Blog")

                    }

                

                ViewD()

                    .tabItem(){

                        Image(systemName: "phone.fill")

                        Text("Contact")

                    }

                

            }

            .accentColor(.black)

        }

        

        

        struct ContentView_Previews: PreviewProvider {

            static var previews: some View{

                ContentView()

                

            }

        }

TabBar with WebView Url
 
 
Q