diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..ce9645e 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(), + ShayneView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift new file mode 100644 index 0000000..574c253 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ShayneView.swift @@ -0,0 +1,23 @@ +// +// ShayneView.swift +// GithubPractice +// +// Created by Shayne Ryu on 5/26/26. +// + +import SwiftUI + +struct ShayneView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + let name: String = "Shayne" + + let team: String = "TEAM 3 " + + var body: some View { + Text("안녕하세요 \(name)이라고 해요 \(team)의 팀명은 $3499 입니다." ) + } +} + +#Preview { + ShayneView() +}