// // LibreEditApp.swift // LibreEdit // // Created by Christian Cleberg on 2024-01-13. // import SwiftUI @main struct LibreEditApp: App { var body: some Scene { DocumentGroup(newDocument: TextFile()) { file in ContentView(document: file.$document) } } }