changeset 299:2edb46be0536

Add SignUp view
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 24 Mar 2021 14:47:15 +0100
parents a5ca835a4ab1
children 2f04d8b1e0ad
files LazyBear/Views/Onboarding/SignUp.swift
diffstat 1 files changed, 20 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LazyBear/Views/Onboarding/SignUp.swift	Wed Mar 24 14:47:15 2021 +0100
@@ -0,0 +1,20 @@
+//
+//  SignUp.swift
+//  LazyBear
+//
+//  Created by Dennis Concepción Martín on 23/3/21.
+//
+
+import SwiftUI
+
+struct SignUp: View {
+    var body: some View {
+        Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
+    }
+}
+
+struct SignUp_Previews: PreviewProvider {
+    static var previews: some View {
+        SignUp()
+    }
+}