zashi-ios-wallet-private/secant/SecantApp.swift

22 lines
389 B
Swift

//
// secantApp.swift
// secant
//
// Created by Francisco Gindre on 7/29/21.
//
import SwiftUI
@main
struct SecantApp: App {
var homeStore: HomeStore = .placeholder
var body: some Scene {
WindowGroup {
NavigationView {
HomeView(store: homeStore)
}
.navigationViewStyle(StackNavigationViewStyle())
}
}
}