Skip to content

Instantly share code, notes, and snippets.

View rmundo's full-sized avatar

Ray Tsaihong rmundo

View GitHub Profile
@frboulais
frboulais / HelpCenter.swift
Last active April 2, 2022 05:57
🔥 Help Center [Firestore x Combine x SwiftUI x Codable]
struct HelpdeskArticle: Codable {
@DocumentID var id: String?
let title: String
let content: String
let locale: String
}
struct HelpdeskView: View {
@StateObject var viewModel = HelpdeskViewModel()