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