summaryrefslogtreecommitdiff
path: root/aki/akiApp.swift
blob: 68be104cc051cac370c9d02db822c91c46e5b5c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  akiApp.swift
//  aki
//
//  Created by Conrad Reeves on 10/30/24.
//

import SwiftUI

@main
struct akiApp: App {
    var body: some Scene {
        WindowGroup {
            MainView()
                .frame(minWidth: 1024, maxWidth: .infinity, minHeight: 768, maxHeight: .infinity)
        }
        .windowResizability(.contentSize)
    }
}