Created the RemoteSFTP.jsx

This commit is contained in:
Mathias Wagner 2023-06-02 14:58:13 +02:00
parent fadcbaffb0
commit 779fdf78f3
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -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"/>
</>
);
}