From 4195e989e86651a251b6ebb368980387922d1f7e Mon Sep 17 00:00:00 2001 From: Yurim Kim Date: Thu, 9 Jan 2025 02:44:57 +0900 Subject: [PATCH] =?UTF-8?q?[Add]=20#4=20-=20HomeView=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Presentation/View/Home/HomeView.swift | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Staccato-iOS/Staccato-iOS/Presentation/View/Home/HomeView.swift diff --git a/Staccato-iOS/Staccato-iOS/Presentation/View/Home/HomeView.swift b/Staccato-iOS/Staccato-iOS/Presentation/View/Home/HomeView.swift new file mode 100644 index 0000000..f71c382 --- /dev/null +++ b/Staccato-iOS/Staccato-iOS/Presentation/View/Home/HomeView.swift @@ -0,0 +1,18 @@ +// +// HomeView.swift +// Staccato-iOS +// +// Created by 김유림 on 1/9/25. +// + +import SwiftUI + +struct HomeView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + HomeView() +}