Mercurial > public > simoleon
comparison Simoleon/ContentView.swift @ 0:e0c2bda6c51f
first commit
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sun, 11 Jul 2021 15:13:29 +0100 |
parents | |
children | a62e5e4a4f02 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e0c2bda6c51f |
---|---|
1 // | |
2 // ContentView.swift | |
3 // Simoleon | |
4 // | |
5 // Created by Dennis Concepción Martín on 08/07/2021. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct ContentView: View { | |
11 var body: some View { | |
12 Text("Hello world") | |
13 } | |
14 } | |
15 | |
16 | |
17 struct ContentView_Previews: PreviewProvider { | |
18 static var previews: some View { | |
19 ContentView().environment(\.managedObjectContext, PersistenceController.preview.container.viewContext) | |
20 } | |
21 } |