mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
22 lines
339 B
Swift
22 lines
339 B
Swift
//
|
|
// TerminalView.swift
|
|
// ShhShell
|
|
//
|
|
// Created by neon443 on 09/06/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Runestone
|
|
|
|
struct TerminalView: View {
|
|
@ObservedObject var handler: SSHHandler
|
|
|
|
var body: some View {
|
|
TextViewController(text: $handler.terminal)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
TerminalView(handler: SSHHandler(host: debugHost()))
|
|
}
|