From 53d877bde2398ff223b58b565e570c7d5311f7a1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 4 Jun 2023 04:43:24 +0200 Subject: [PATCH] Integrated the SSHContainer into the RemoteSSH.jsx --- .../src/pages/tools/linux/RemoteSSH/RemoteSSH.jsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/client/src/pages/tools/linux/RemoteSSH/RemoteSSH.jsx b/client/src/pages/tools/linux/RemoteSSH/RemoteSSH.jsx index 210c5fb..ec91606 100644 --- a/client/src/pages/tools/linux/RemoteSSH/RemoteSSH.jsx +++ b/client/src/pages/tools/linux/RemoteSSH/RemoteSSH.jsx @@ -1,24 +1,27 @@ import InfoArea from "@/common/components/InfoArea"; import Button from "@/common/components/Button"; import {faServer} from "@fortawesome/free-solid-svg-icons"; -import ErrorArea from "@/common/components/ErrorArea"; -import "./styles.sass"; import {useState} from "react"; -import ServerDialog from "@/pages/tools/linux/components/ServerDialog/index.js"; -import {ServerProvider} from "@/common/contexts/Server/index.js"; +import ServerDialog from "@/pages/tools/linux/components/ServerDialog"; +import {ServerProvider} from "@/common/contexts/Server"; + +import "xterm/css/xterm.css"; +import "./styles.sass"; +import SSHContainer from "@/pages/tools/linux/RemoteSSH/components/SSHContainer"; export const RemoteSSH = () => { const [serverDialogOpen, setServerDialogOpen] = useState(false); return ( - +