Skip to content

Instantly share code, notes, and snippets.

View nikitaame's full-sized avatar

Nikita Amelchenko nikitaame

View GitHub Profile
@nikitaame
nikitaame / TCARecursionApp.swift
Last active June 5, 2022 06:48
TCA Circular Reference
import ComposableArchitecture
import SwiftUI
@main
struct TCARecursionApp: App {
var body: some Scene {
WindowGroup {
HomeView(store: .init(initialState: HomeState(), reducer: homeReducer, environment: HomeEnvironment(uuid: UUID.init)))
}
}