diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..b15019f 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(), + AnneView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/AnneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/AnneView.swift new file mode 100644 index 0000000..3a48221 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/AnneView.swift @@ -0,0 +1,25 @@ +// +// AnneView.swift +// GithubPractice +// +// Created by Euna Cho on 5/26/26. +// + +import SwiftUI + +struct AnneView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Anne" + + var team: String = "이어폰줄꼬임" + + var body: some View { + Text("안녕하세요 앤이에요") + + + } +} + +#Preview { + AnneView() +}