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