From 23b46569f765dc5edb0d2524dea2d5e20f877821 Mon Sep 17 00:00:00 2001 From: kiim672 Date: Tue, 26 May 2026 17:13:31 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=A0=A0=EC=9D=84=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/Zenview.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/Zenview.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/Zenview.swift b/GithubPractice/GithubPractice/View/LearnerViews/Zenview.swift new file mode 100644 index 0000000..93a2550 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/Zenview.swift @@ -0,0 +1,22 @@ +// +// Zenview.swift +// GithubPractice +// +// Created by ZEN on 5/26/26. +// + +import SwiftUI + +struct Zenview: LearnerView { + let name: String = "Zen" + + let team: String = "13" + + var body: some View { + Text("안녕하세요 젠이에요") + } +} + +#Preview { + Zenview() +} From 2c95664a45376b503441d0730f05576d1bf9177c Mon Sep 17 00:00:00 2001 From: kiim672 Date: Tue, 26 May 2026 17:15:36 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EC=A0=A0=20=ED=99=94=EC=9D=B4=ED=8C=85=20?= =?UTF-8?q?=EC=A0=A0=20=EB=8D=94=20=EB=84=A3=EC=96=B4=EC=95=BC=EC=A7=80?= 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..10bb3ee 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(), + Zenview() ]