8a9e3ea76b
Changelog-Fixed: Fix localization issues and export strings for translation Signed-off-by: Terry Yiu <git@tyiu.xyz> Signed-off-by: William Casarin <jb55@jb55.com>
21 lines
370 B
Swift
21 lines
370 B
Swift
//
|
|
// ContextButton.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-06-01.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContextButton: View {
|
|
var body: some View {
|
|
Text(verbatim: /*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct ContextButton_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContextButton()
|
|
}
|
|
}
|