diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..140fadb 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(), + QwertyView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/QwertyView.swift b/GithubPractice/GithubPractice/View/LearnerViews/QwertyView.swift new file mode 100644 index 0000000..578c7c1 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/QwertyView.swift @@ -0,0 +1,19 @@ +// +// QwertyView.swift +// GithubPractice +// +// Created by 여경 on 5/26/26. +// + +import SwiftUI + +struct QwertyView: LearnerView { + var name: String = "Qwerty" + var team: String = "1" + var body: some View { + Text("하이욤") + } +} +#Preview { + QwertyView() +}