Mercurial > public > lazybear
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBearWatchOS Extension/Views/Home/HomeView.swift Wed Jun 23 10:54:47 2021 +0200 @@ -0,0 +1,26 @@ +// +// HomeView.swift +// LazyBearWatchOS Extension +// +// Created by Dennis Concepción Martín on 22/6/21. +// + +import SwiftUI +import CoreData + +struct HomeView: View { + @FetchRequest(entity: WatchlistCompany.entity(), sortDescriptors: []) + var watchlistCompanies: FetchedResults<WatchlistCompany> + + var body: some View { + VStack { + + } + } +} + +struct HomeView_Previews: PreviewProvider { + static var previews: some View { + HomeView() + } +}