Created the RemoteSSH.jsx

This commit is contained in:
Mathias Wagner 2023-06-02 14:58:52 +02:00
parent 0ea53094ea
commit 23121787d1
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 RemoteSSH = () => {
return (
<>
<InfoArea title="Remote SSH" description="Mit diesem Tool kannst du dich mit einem SSH-Server verbinden und diesen fernsteuern.">
<Button icon={faGear} text="Konfigurieren" onClick={() => {}}/>
</InfoArea>
<ErrorArea error="Dieses Tool ist noch nicht verfügbar"/>
</>
);
}