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