Skip to content

Commit 4792c14

Browse files
authored
Merge branch 'develop' into #999-Lumi
2 parents b7dd73a + 6259141 commit 4792c14

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

GithubPractice/GithubPractice/Model/LearnerViews.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ let learnerViews: [any LearnerView] = [
1414
FridayView(),
1515
ElenaView(),
1616
JudyJView(),
17-
NathanView()
17+
NathanView(),
18+
PresenceView()
1819
]
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//
2+
// LumiView.swift
3+
// GithubPractice
4+
//
5+
// Created by 정영진 on 5/22/25.
6+
//
7+
8+
import SwiftUI
9+
10+
struct PresenceView: LearnerView {
11+
// TODO: 1. 이름, 팀 수정하고 커밋하기
12+
var name: String = "Presence"
13+
14+
var team: String = "러너팀"
15+
16+
var body: some View {
17+
Text("저의 이름은 \(name)입니다.")
18+
.font(.largeTitle)
19+
Text("저의 팀은 \(team) 입니다.")
20+
.font(.subheadline)
21+
}
22+
}
23+
24+
#Preview {
25+
PresenceView()
26+
}

0 commit comments

Comments
 (0)