| 123456789101112131415161718192021222324 |
- //
- // 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 {
- ProductView()
- .environment(
- ProductVM(
- input: input,
- output: output
- )
- )
- }
- }
|