secant-ios-wallet/secant/SecantApp.swift

18 lines
224 B
Swift

//
// secantApp.swift
// secant
//
// Created by Francisco Gindre on 7/29/21.
//
import SwiftUI
@main
struct SecantApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}