aboutsummaryrefslogtreecommitdiff
path: root/Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift')
-rw-r--r--Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift17
1 files changed, 17 insertions, 0 deletions
diff --git a/Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift b/Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift
new file mode 100644
index 0000000..fb7e2bb
--- /dev/null
+++ b/Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift
@@ -0,0 +1,17 @@
+//
+// SwiftyCropDemoApp.swift
+// SwiftyCropDemo
+//
+// Created by Leonid Zolotarev on 1/23/24.
+//
+
+import SwiftUI
+
+@main
+struct SwiftyCropDemoApp: App {
+ var body: some Scene {
+ WindowGroup {
+ ContentView()
+ }
+ }
+}