diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..b9a319b 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(), + JunView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/JunView.swift b/GithubPractice/GithubPractice/View/LearnerViews/JunView.swift new file mode 100644 index 0000000..6a827e2 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/JunView.swift @@ -0,0 +1,26 @@ +// +// SanoView.swift +// GithubPractice +// +// Created by 이시온 on 5/26/26. +// + +import SwiftUI + +struct JunView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Jun" + + var team: String = "멘토팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + JunView() +}