Skip to content

Instantly share code, notes, and snippets.

@okwasniewski
Created September 30, 2024 14:18
Show Gist options
  • Save okwasniewski/160ce5fc22eaa400b73f57db8c1e52ff to your computer and use it in GitHub Desktop.
Save okwasniewski/160ce5fc22eaa400b73f57db8c1e52ff to your computer and use it in GitHub Desktop.
@main
struct BrownfieldSwiftUIApp: App {
@UIApplicationDelegateAdaptor var delegate: AppDelegate
var body: some Scene {
WindowGroup {
TabView {
ContentView()
.tabItem {
Label("Home", systemImage: "house")
}
// Add ReactNative as new tab here
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment