diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 11f591e..1cbec68 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,6 +11,7 @@ import Foundation let learnerViews: [any LearnerView] = [ LumiView(), FridayView(), + JINView() ElenaView(), JudyJView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/JINView.swift b/GithubPractice/GithubPractice/View/LearnerViews/JINView.swift new file mode 100644 index 0000000..27555ec --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/JINView.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct JINView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "JIN" + + var team: String = "I Can Speak" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + JINView() +}