diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index f63822b..5284a8f 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,6 @@ import Foundation let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), - ClaireView() + IrisView(), + GonnView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift b/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift new file mode 100644 index 0000000..089bca8 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift @@ -0,0 +1,22 @@ +// +// GonnView.swift +// GithubPractice +// +// Created by 박고운 on 5/26/26. +// + +import SwiftUI + +struct GonnView: LearnerView { + var name: String = "Gonn" + + var team: String = "06" + + var body: some View { + Text("나는 곤이다.") + } +} + +#Preview { + GonnView() +}