secant-ios-wallet/secant/SecantApp.swift

22 lines
382 B
Swift

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