Added a placeholder to the Decoder.jsx

This commit is contained in:
Mathias Wagner 2023-05-31 01:35:07 +02:00
parent d92c4e8f69
commit 141572f1ba
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -35,7 +35,8 @@ export const Decoder = () => {
<div className="base64-decoder"> <div className="base64-decoder">
<h2>Eingabe-Text</h2> <h2>Eingabe-Text</h2>
<TextArea value={inputString} onChange={(e) => setInputString(e.target.value)} /> <TextArea value={inputString} onChange={(e) => setInputString(e.target.value)}
placeholder="Gib hier den Base64 String ein" />
{outputString !== "" && <> {outputString !== "" && <>
<h2>Ausgabe-Text</h2> <h2>Ausgabe-Text</h2>