Files
swift-study/demo/Views/Mall/GoodsDetailView.swift
2024-01-23 18:00:59 +08:00

19 lines
265 B
Swift

//
// GoodsDetail.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
struct GoodsDetailView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
GoodsDetailView()
}