diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index f63822b..65c2c79 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,7 @@ import Foundation let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), + IrisView(), + NeptuneView(), ClaireView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift new file mode 100644 index 0000000..b723a5c --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift @@ -0,0 +1,22 @@ +// +// NeptuneView.swift +// +// +// Created by 이은지 on 5/26/26. +// + +import SwiftUI + +struct NeptuneView: LearnerView { + var name: String = "Neptune" + + var team: String = "이어폰 줄 꼬임" + + var body: some View { + Text("이어폰 줄 푸는 중...") + } +} + +#Preview { + NeptuneView() +}