'update'
This commit is contained in:
17
ipad_app/Sources/IpadReaderApp.swift
Normal file
17
ipad_app/Sources/IpadReaderApp.swift
Normal file
@@ -0,0 +1,17 @@
|
||||
#if os(iOS)
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct IpadReaderApp: App {
|
||||
@StateObject private var importer = BundleImporter()
|
||||
@StateObject private var libraryVM = LibraryViewModel()
|
||||
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
.environmentObject(importer)
|
||||
.environmentObject(libraryVM)
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user