Mercurial > public > lazybear
view 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 source
// // 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() } }