From 779fdf78f3b34e1b76d39a2ec19b7de3c13eeea1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner <germannewsmaker@gmail.com> Date: Fri, 2 Jun 2023 14:58:13 +0200 Subject: [PATCH] Created the RemoteSFTP.jsx --- .../tools/linux/RemoteSFTP/RemoteSFTP.jsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx diff --git a/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx b/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx new file mode 100644 index 0000000..f73067d --- /dev/null +++ b/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx @@ -0,0 +1,19 @@ +import InfoArea from "@/common/components/InfoArea/index.js"; +import Button from "@/common/components/Button/index.js"; +import {faGear} from "@fortawesome/free-solid-svg-icons"; +import ErrorArea from "@/common/components/ErrorArea/index.js"; +import "./styles.sass"; + +export const RemoteSFTP = () => { + + return ( + <> + <InfoArea title="Remote SFTP" description="Mit diesem Tool kannst du deine Dateien auf einem SFTP-Server verwalten"> + <Button icon={faGear} text="Konfigurieren" onClick={() => {}}/> + </InfoArea> + + <ErrorArea error="Dieses Tool ist noch nicht verfügbar"/> + </> + ); + +} \ No newline at end of file