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