| 12345678910111213141516171819202122 |
- //
- // CartBuilder.swift
- // SUIExamples
- //
- // Created by Pavel Yurchenko on 27.11.2024.
- //
- import SwiftUI
- struct CartBuilder {
- typealias Output = CartVM.Output
- func build(with output: Output) -> some View {
- CartView()
- .environment(
- CartVM(
- output: output
- )
- )
- }
- }
|