14 lines
248 B
Swift
14 lines
248 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct BusinessCardWatchApp: App {
|
|
@State private var cardStore = WatchCardStore()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
WatchContentView()
|
|
.environment(cardStore)
|
|
}
|
|
}
|
|
}
|