21 lines
414 B
Swift
21 lines
414 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct IronStorageApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|
|
|
|
private struct ContentView: View {
|
|
var body: some View {
|
|
ContentUnavailableView(
|
|
"No Password Store",
|
|
systemImage: "lock.shield",
|
|
description: Text("Open or clone a store in \(productName()) to begin.")
|
|
)
|
|
}
|
|
}
|