Mercurial > public > lazybear
view LazyBear/UI/DateSelection.swift @ 207:53b47dcc1b6c
Add DateSelection
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sat, 27 Feb 2021 12:43:08 +0000 |
parents | |
children | 3acc46851267 |
line wrap: on
line source
// // DateSelection.swift // LazyBear // // Created by Dennis Concepción Martín on 27/2/21. // import SwiftUI struct DateSelection: View { var body: some View { Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) } } struct DateSelection_Previews: PreviewProvider { static var previews: some View { DateSelection() } }