diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..bda1b39 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(), + LeeoView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/LeeoView.swift b/GithubPractice/GithubPractice/View/LearnerViews/LeeoView.swift new file mode 100644 index 0000000..4c3ab51 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/LeeoView.swift @@ -0,0 +1,23 @@ +// +// LeeoView.swift +// GithubPractice +// +// Created by DS on 5/26/26. +// + +import SwiftUI + +struct LeeoView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "leeo" + + var team: String = "13" + + var body: some View { + Text("안녕하세요 리이오에요.") + } +} + +#Preview { + LeeoView() +}