Files
ios-study/jason/Views/Search/SearchView.swift
2024-01-22 18:13:01 +08:00

19 lines
255 B
Swift

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