From 21b0d6e4aac4f88d01daf7eaa896cb21c818ee75 Mon Sep 17 00:00:00 2001 From: hyunzimn Date: Tue, 26 May 2026 17:14:24 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A7=88=EC=B9=98=20=EB=B7=B0=20=EB=A7=8C?= =?UTF-8?q?=EB=93=A4=EC=97=87=EC=96=B4=EC=97=BC=20=E3=85=8B=E3=85=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/MarchView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift b/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift new file mode 100644 index 0000000..92feaf6 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift @@ -0,0 +1,22 @@ +// +// MarchView.swift +// GithubPractice +// +// Created by Jimin Hyun on 5/26/26. +// + +import SwiftUI + +struct MarchView: LearnerView { + let name: String = "March" + + let team: String = "Team 6 오도독" + + var body: some View { + Text("안녕하세요 마치예염") + } +} + +#Preview { + MarchView() +}