|
@@ -17,7 +17,10 @@ export const Console = ({ isOpen, close }) => {
|
|
<button onClick={close}>x</button>
|
|
<button onClick={close}>x</button>
|
|
</div>
|
|
</div>
|
|
<div className={style.out}>{output}</div>
|
|
<div className={style.out}>{output}</div>
|
|
- <textarea onChange={(event) => setOutput(event.target.value)} value={output} />
|
|
|
|
|
|
+ <div className={style.entryField}>
|
|
|
|
+ <span>></span>
|
|
|
|
+ <textarea onChange={(event) => setOutput(event.target.value)} value={output} />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
);
|
|
);
|
|
} else {
|
|
} else {
|