EventDetailView placeholder

we'll use this view for when click into an event

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-04-16 09:36:19 -07:00
parent 4491db5cdd
commit d796c44b46
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
//
// ThreadView.swift
// damus
//
// Created by William Casarin on 2022-04-16.
//
import SwiftUI
struct EventDetailView: View {
let event: NostrEvent
var body: some View {
Text("EventDetailView")
}
}
struct EventDetailView_Previews: PreviewProvider {
static var previews: some View {
EventDetailView(event: NostrEvent(content: "Hello", pubkey: "Guy"))
}
}