diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..820084a 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(), + ZukiView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift new file mode 100644 index 0000000..762a82b --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift @@ -0,0 +1,22 @@ +// +// ZukiView.swift +// GithubPractice +// +// Created by zuki on 5/26/26. +// + +import SwiftUI + +struct ZukiView: LearnerView { + var name: String = "Zuki" + + var team: String = "Team15" + + var body: some View { + Text("안녕하세요 떵~개!예요. 오늘 멉빵은... 무뼈궁무닷빠! 마싯게먹겓듭니다! 조아요와 구동 한 번씩만 부탓드리께요!") + } +} + +#Preview { + ZukiView() +}