Mercurial > public > simoleon
comparison Simoleon/ConversionView.swift @ 179:7c4a789e51ba
add views
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 26 Oct 2021 18:18:36 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
178:1077bc0ffdbf | 179:7c4a789e51ba |
---|---|
1 // | |
2 // ConversionView.swift | |
3 // Simoleon | |
4 // | |
5 // Created by Dennis Concepción Martín on 26/10/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct ConversionView: View { | |
11 var body: some View { | |
12 Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) | |
13 } | |
14 } | |
15 | |
16 struct ConversionView_Previews: PreviewProvider { | |
17 static var previews: some View { | |
18 ConversionView() | |
19 } | |
20 } |