SUIExamplesApp.swift 241 B

1234567891011121314151617
  1. //
  2. // SUIExamplesApp.swift
  3. // SUIExamples
  4. //
  5. // Created by Pavel Yurchenko on 17.08.2024.
  6. //
  7. import SwiftUI
  8. @main
  9. struct SUIExamplesApp: App {
  10. var body: some Scene {
  11. WindowGroup {
  12. ContentView()
  13. }
  14. }
  15. }