// // Welcome.swift // Zashi // // Created by Lukáš Korba on 04.04.2022. // import Foundation import ComposableArchitecture @Reducer public struct Welcome { @ObservableState public struct State: Equatable { } public enum Action: Equatable { case debugMenuStartup } public init() {} public var body: some Reducer { Reduce { _, _ in return .none } } }