feat(chat-room): 채팅방에 필요한 기본적인 파일 추가

This commit is contained in:
Yu Sung
2025-09-03 17:37:23 +09:00
parent 6b445fff7c
commit a42edbe99c
9 changed files with 119 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
//
// MessageInputView.swift
// SodaLive
//
// Created by klaus on 9/3/25.
//
import SwiftUI
struct MessageInputView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
MessageInputView()
}