Files
swift-composable-architectu…/Examples/TicTacToe/App/TicTacToeApp.swift
2021-07-29 11:21:50 -04:00

11 lines
121 B
Swift

import SwiftUI
@main
struct TicTacToeApp: App {
var body: some Scene {
WindowGroup {
RootView()
}
}
}