import SwiftUI
import WebKit

struct ContentView: View {
   @State private var searchURL = URL(string: "https://www.formasterminds.com")!

   var body: some View {
      WebView(url: searchURL)
   }
}