21 lines
345 B
Swift
21 lines
345 B
Swift
//
|
|
// ImageView.swift
|
|
// damus
|
|
//
|
|
// Created by user232838 on 1/5/23.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ImageView: View {
|
|
var body: some View {
|
|
Text(verbatim: /*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct ImageView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ImageView()
|
|
}
|
|
}
|