forked from AcaMate/AcaMate_iOS
15 lines
180 B
Swift
15 lines
180 B
Swift
//
|
|
// ChattingView.swift
|
|
// AcaMate
|
|
//
|
|
// Created by TAnine on 2/11/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ChattingView: View {
|
|
var body: some View {
|
|
Text("채팅")
|
|
}
|
|
}
|