damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

ContextButton.swift (370B)


      1 //
      2 //  ContextButton.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-06-01.
      6 //
      7 
      8 import SwiftUI
      9 
     10 struct ContextButton: View {
     11     var body: some View {
     12         Text(verbatim: /*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
     13     }
     14 }
     15 
     16 struct ContextButton_Previews: PreviewProvider {
     17     static var previews: some View {
     18         ContextButton()
     19     }
     20 }