diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..ff99d6c 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(), + DaniView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift new file mode 100644 index 0000000..6ea6542 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift @@ -0,0 +1,23 @@ +// +// DaniView.swift +// GithubPractice +// +// Created by Daye Lee on 5/26/26. +// + +import SwiftUI + +struct DaniView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Dani" + + var team: String = "14" + + var body: some View { + Text("나는 다니다.") + } +} + +#Preview { + DaniView() +}