diff --git a/Shared/WriteFreely_MultiPlatformApp.swift b/Shared/WriteFreely_MultiPlatformApp.swift index 1004d26..587b707 100644 --- a/Shared/WriteFreely_MultiPlatformApp.swift +++ b/Shared/WriteFreely_MultiPlatformApp.swift @@ -1,11 +1,12 @@ import SwiftUI @main struct WriteFreely_MultiPlatformApp: App { @StateObject private var store = PostStore() + var body: some Scene { WindowGroup { ContentView(postStore: store) } } }