From 3518b9b8a5108a3cce24fe13ca3f7a3f1837048e Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 2 Jun 2023 14:59:20 +0200 Subject: [PATCH] Integrated the RemoteSSH & RemoteSFTP components into the routes --- client/src/common/routes/index.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/src/common/routes/index.jsx b/client/src/common/routes/index.jsx index f09916a..bca8a00 100644 --- a/client/src/common/routes/index.jsx +++ b/client/src/common/routes/index.jsx @@ -12,6 +12,8 @@ import Encoder from "@/pages/tools/base64/Encoder"; import Decoder from "@/pages/tools/base64/Decoder"; import QRCode from "@/pages/tools/general/QRCode"; import InstallSoftware from "@/pages/tools/linux/InstallSoftware"; +import RemoteSSH from "@/pages/tools/linux/RemoteSSH"; +import RemoteSFTP from "@/pages/tools/linux/RemoteSFTP"; export const routes = { Allgemein: [ @@ -46,12 +48,14 @@ export const routes = { { path: '/linux/ssh', name: 'Remote-SSH', - icon: faTerminal + icon: faTerminal, + component: }, { path: '/linux/sftp', name: 'Remote-SFTP', - icon: faFolder + icon: faFolder, + component: }, { path: '/linux/software',