| 12345678910111213141516171819202122 |
- //
- // ProductBuilder.swift
- // SUIExamples
- //
- // Created by Pavel Yurchenko on 27.11.2024.
- //
- import SwiftUI
- struct ProductBuilder {
- typealias Input = ProductVM.Input
- typealias Output = ProductVM.Output
- func build(with input: Input, output: Output) -> some View {
- let vm = ProductVM(
- input: input,
- output: output
- )
- return ProductView().environment(vm)
- }
- }
|