22 lines
429 B
Swift
22 lines
429 B
Swift
//
|
|
// ConversationView.swift
|
|
// kordophone2
|
|
//
|
|
// Created by James Magahern on 8/24/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ConversationView: View
|
|
{
|
|
@Binding var transcriptModel: TranscriptView.ViewModel
|
|
@Binding var entryModel: MessageEntryView.ViewModel
|
|
|
|
var body: some View {
|
|
VStack {
|
|
TranscriptView(model: $transcriptModel)
|
|
MessageEntryView(viewModel: $entryModel)
|
|
}
|
|
}
|
|
}
|