mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
12 lines
153 B
Swift
12 lines
153 B
Swift
import ComposableArchitecture
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct CaseStudiesApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
RootView()
|
|
}
|
|
}
|
|
}
|