Files
swiftGrammar/AIGrammar/View/WordsView.swift
2024-08-12 10:26:21 +08:00

19 lines
256 B
Swift

//
// WordsView.swift
// AIGrammar
//
// Created by oscar on 2024/3/27.
//
import SwiftUI
struct WordsView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
WordsView()
}