Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions GithubPractice/GithubPractice/View/LearnerViews/MarchView.swift
Original file line number Diff line number Diff line change
@@ -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()
}