mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
17 lines
260 B
Swift
17 lines
260 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct CaseStudiesApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
RootView(
|
|
store: .init(
|
|
initialState: RootState(),
|
|
reducer: rootReducer,
|
|
environment: .live
|
|
)
|
|
)
|
|
}
|
|
}
|
|
}
|