From 8f39a1f9ac3b12fb1c6fe219e3f4fba53809958e Mon Sep 17 00:00:00 2001 From: SEHWAN YOO Date: Tue, 26 May 2026 17:13:49 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=89=90=EC=9D=B8=EB=B7=B0=20=EA=B5=AC?= =?UTF-8?q?=EC=9B=8C=EC=98=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/ShayneView.swift | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift new file mode 100644 index 0000000..574c253 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift @@ -0,0 +1,23 @@ +// +// ShayneView.swift +// GithubPractice +// +// Created by Shayne Ryu on 5/26/26. +// + +import SwiftUI + +struct ShayneView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + let name: String = "Shayne" + + let team: String = "TEAM 3 " + + var body: some View { + Text("안녕하세요 \(name)이라고 해요 \(team)의 팀명은 $3499 입니다." ) + } +} + +#Preview { + ShayneView() +} From 3ee103a43cc3c9ac52c4690cb5f94e8e9c044889 Mon Sep 17 00:00:00 2001 From: SEHWAN YOO Date: Tue, 26 May 2026 17:15:41 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=9F=AC=EB=84=88=EB=B7=B0=20=EC=89=90?= =?UTF-8?q?=EC=9D=B8=EB=B7=B0=20=EB=81=BC=EC=9B=8C=EB=84=A3=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GithubPractice/GithubPractice/Model/LearnerViews.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..ce9645e 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,6 @@ import SwiftUI let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), - IrisView() + IrisView(), + ShayneView() ]