+ {/* Code Editor */}
+
+ setCode(e.target.value)} // Update this line
+ style={{
+ minHeight: "200px",
+ padding: "10px",
+ backgroundColor: "#1E1E1E",
+ color: "#FFF",
+ borderRadius: "8px",
+ outline: "none",
+ fontFamily: "'Fira Code', monospace",
+ fontSize: "14px",
+ lineHeight: "1.5",
+ overflowY: "auto",
+ }}
+ />
+
+
+ {/* Settings and Syntax Highlighter */}
+
+
+ setLanguage(e.target.value)}>
+ {LANGUAGES?.map((lang) => (
+
+ ))}
+
+
+ setBackgroundColor(e.target.value)}
+ title="Change Background Color"
+ />
+
+
+
+ {isDarkTheme ? : }
+
+
+
+ {isCopied ? : }
+
+
+
+
+
+
+ {code.trim() !== "" ? code : "No code provided."}
+
+
+
+
+