diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..b2044c0 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(), + SiuView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift b/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift new file mode 100644 index 0000000..19243b9 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift @@ -0,0 +1,22 @@ +// +// SiuView.swift +// GithubPractice +// +// Created by Im gaeun on 5/26/26. +// + +import SwiftUI + +struct SiuView: LearnerView { + var name: String = "Siu" + + var team: String = "11" + + var body: some View { + Text("나는 시우다.") + } +} + +#Preview { + SiuView() +}