Mercurial > public > simoleon
view Simoleon/AboutView.swift @ 179:7c4a789e51ba
add views
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 26 Oct 2021 18:18:36 +0200 |
parents | |
children |
line wrap: on
line source
// // AboutView.swift // Simoleon // // Created by Dennis Concepción Martín on 26/10/21. // import SwiftUI struct AboutView: View { var body: some View { Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) } } struct AboutView_Previews: PreviewProvider { static var previews: some View { AboutView() } }