diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index e95a0f2..90cef7e 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -14,6 +14,6 @@ let learnerViews: [any LearnerView] = [ FridayView(), ElenaView(), JudyJView(), + SingsingView() PresenceView() -] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/SingsingView.swift b/GithubPractice/GithubPractice/View/LearnerViews/SingsingView.swift new file mode 100644 index 0000000..7d75d18 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/SingsingView.swift @@ -0,0 +1,26 @@ +// +// SingsingView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct SingsingView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Singsing" + + var team: String = "러너팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + SingsingView() +}