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