Source code for the WriteFreely SwiftUI app for iOS, iPadOS, and macOS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

12 řádky
207 B

  1. import Foundation
  2. class PostStore: ObservableObject {
  3. @Published var posts: [Post]
  4. init(posts: [Post] = []) {
  5. self.posts = posts
  6. }
  7. }
  8. let testPostStore = PostStore(posts: testPostData)