CHResume/ResumeBuilder/ResumeBuilderApp.swift

11 lines
233 B
Swift
Raw Permalink Normal View History

2023-08-17 10:12:26 +02:00
import SwiftUI
@main
struct ResumeBuilderApp: App {
var body: some Scene {
WindowGroup {
2023-08-20 13:11:13 +02:00
ContentView(content: [cvInfoEnglish, cvInfoGerman], style: cvStyle)
}.windowResizability(.contentSize)
2023-08-17 10:12:26 +02:00
}
}