comparison LazyBearApp.swift @ 0:668fd7e0d121

first commit
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Tue, 05 Jan 2021 16:43:09 +0000
parents
children 3bd2e5d6e89d
comparison
equal deleted inserted replaced
-1:000000000000 0:668fd7e0d121
1 //
2 // LazyBearApp.swift
3 // LazyBear
4 //
5 // Created by Dennis Concepción Martín on 27/09/2020.
6 //
7
8 import SwiftUI
9 import StoreKit
10
11 @main
12 struct LazyBearApp: App {
13 var body: some Scene {
14 WindowGroup {
15 NavigationView {
16 ContentView()
17 }
18 .navigationViewStyle(StackNavigationViewStyle())
19 }
20 }
21 }