comparison LazyBearWatchOS Extension/Views/Home/HomeView.swift @ 447:8621ba6fd457

Fixes #48
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Wed, 23 Jun 2021 10:54:47 +0200
parents
children bb69f9d1d20f
comparison
equal deleted inserted replaced
446:9cc0455bc46f 447:8621ba6fd457
1 //
2 // HomeView.swift
3 // LazyBearWatchOS Extension
4 //
5 // Created by Dennis Concepción Martín on 22/6/21.
6 //
7
8 import SwiftUI
9 import CoreData
10
11 struct HomeView: View {
12 @FetchRequest(entity: WatchlistCompany.entity(), sortDescriptors: [])
13 var watchlistCompanies: FetchedResults<WatchlistCompany>
14
15 var body: some View {
16 VStack {
17
18 }
19 }
20 }
21
22 struct HomeView_Previews: PreviewProvider {
23 static var previews: some View {
24 HomeView()
25 }
26 }