in Sample/MVC/TicTacToe/Sources/AppDelegate.swift [25:36]
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
registerProviderFactories()
let window = UIWindow(frame: UIScreen.main.bounds)
self.window = window
let rootComponent = RootComponent()
window.rootViewController = rootComponent.rootViewController
window.makeKeyAndVisible()
return true
}