Added server.tsx and make it work with tab system

This commit is contained in:
LukeGus
2025-08-16 01:30:18 -05:00
parent 2667af9437
commit 5445cb2b78
8 changed files with 144 additions and 54 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import React, { createContext, useContext, useState, useRef, ReactNode } from 'r
export interface Tab {
id: number;
type: 'home' | 'terminal' | 'ssh_manager';
type: 'home' | 'terminal' | 'ssh_manager' | 'server';
title: string;
hostConfig?: any;
terminalRef?: React.RefObject<any>;