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