Last active
September 22, 2023 15:13
-
-
Save SmartJSONEditor/e663c6c31b163c3e8bc22c684e768101 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AFTER | |
@main | |
struct BookReaderApp: App { | |
/// Object is allocated in a global context. | |
@State private var library = Library() | |
var body: some Scene { | |
WindowGroup { | |
LibraryView() | |
.environment(library) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment