forked from AcaMate/AcaMate_iOS
19 lines
255 B
Swift
19 lines
255 B
Swift
//
|
|
// IntroView.swift
|
|
// AcaMate
|
|
//
|
|
// Created by Sean Kim on 12/2/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct IntroView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
IntroView()
|
|
}
|