Mercurial > public > simoleon
diff Simoleon/FavoritesView.swift @ 179:7c4a789e51ba
add views
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 26 Oct 2021 18:18:36 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Simoleon/FavoritesView.swift Tue Oct 26 18:18:36 2021 +0200 @@ -0,0 +1,20 @@ +// +// FavoritesView.swift +// Simoleon +// +// Created by Dennis Concepción Martín on 26/10/21. +// + +import SwiftUI + +struct FavoritesView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +struct FavoritesView_Previews: PreviewProvider { + static var previews: some View { + FavoritesView() + } +}