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() ] 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() +}