// // FantasyWatch_Watch_AppApp.swift // FantasyWatch Watch App Watch App // // Created by Michael Simard on 12/6/25. // import ComposableArchitecture import SwiftUI @main struct FantasyWatch_Watch_App_Watch_AppApp: App { let store = Store(initialState: WatchMatchupFeature.State()) { WatchMatchupFeature() } var body: some Scene { WindowGroup { MatchupView(store: store) } } }