// // FeedbackVM.swift // SUIExamples // // Created by Pavel Yurchenko on 27.11.2024. // import SwiftUI @Observable final class FeedbackVM { struct Output { } let output: Output init(output: Output) { self.output = output } }