Add an "all posts" collection

This commit is contained in:
Angelo Stavrow 2020-07-31 16:53:48 -04:00
parent cc47028bb4
commit ab0a89ba07
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -5,6 +5,7 @@ struct PostCollection: Identifiable, Hashable {
let title: String
}
let allPostsCollection = PostCollection(title: "All Posts")
let defaultDraftCollection = PostCollection(title: "Drafts")
let testPostCollection1 = PostCollection(title: "Collection 1")
let testPostCollection2 = PostCollection(title: "Collection 2")