diff --git a/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift b/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift new file mode 100644 index 0000000..92feaf6 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift @@ -0,0 +1,22 @@ +// +// MarchView.swift +// GithubPractice +// +// Created by Jimin Hyun on 5/26/26. +// + +import SwiftUI + +struct MarchView: LearnerView { + let name: String = "March" + + let team: String = "Team 6 오도독" + + var body: some View { + Text("안녕하세요 마치예염") + } +} + +#Preview { + MarchView() +}