21 lines
350 B
Swift
21 lines
350 B
Swift
//
|
|
// HomeViewTwo.swift
|
|
// Feels (iOS)
|
|
//
|
|
// Created by Trey Tartt on 2/18/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct HomeViewTwo: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct HomeViewTwo_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
HomeViewTwo()
|
|
}
|
|
}
|