diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..25c3aa5 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(), + MokryunView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/MokryunView.swift b/GithubPractice/GithubPractice/View/LearnerViews/MokryunView.swift new file mode 100644 index 0000000..a268b5e --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/MokryunView.swift @@ -0,0 +1,22 @@ +// +// MokryunView.swift +// GithubPractice +// +// Created by 안동현 on 5/26/26. +// + +import SwiftUI + +struct MokryunView: LearnerView { + let name: String = "Mokryun" + + let team: String = "Team2" + + var body: some View { + Text("안녕하세요? \(name)") + } +} + +#Preview { + MokryunView() +}