| 12345678910111213141516171819202122 |
- //
- // 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
- }
- }
|