aboutsummaryrefslogtreecommitdiff
path: root/Demo/SwiftyCropDemo/SwiftyCropDemoApp.swift
blob: fb7e2bbdc367ccf6c485156f5378a283f2c1878b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  SwiftyCropDemoApp.swift
//  SwiftyCropDemo
//
//  Created by Leonid Zolotarev on 1/23/24.
//

import SwiftUI

@main
struct SwiftyCropDemoApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}