@@ -40,7 +40,7 @@ const CodePreview = () => {
40
40
return (
41
41
42
42
< div className = "codePreviewContainer" >
43
-
43
+ { /*
44
44
<div class="mb-4 border-b border-gray-200 dark:border-gray-700">
45
45
<ul class="flex flex-wrap -mb-px" id="myTab" data-tabs-toggle="#myTabContent" role="tablist">
46
46
@@ -57,7 +57,7 @@ const CodePreview = () => {
57
57
</li>
58
58
59
59
</ul>
60
- </ div >
60
+ </div> */ }
61
61
62
62
< div className = "tabContainer" >
63
63
< button
@@ -71,10 +71,9 @@ const CodePreview = () => {
71
71
onClick = { ( ) => toggleTab ( 3 ) } > CSS Editor</ button >
72
72
</ div >
73
73
< div className = "contentContainer" >
74
- < div className = { tabState === 1 ? "content active-content" : "content" } > < div className = "codeEditorContainer" >
75
-
76
-
77
-
74
+ < div className = { tabState === 1 ? "content active-content" : "content" } >
75
+
76
+ < div className = "codeEditorContainer" >
78
77
{ /* <Editor
79
78
height="80vh"
80
79
defaultLanguage="javascript"
@@ -90,20 +89,20 @@ const CodePreview = () => {
90
89
}}
91
90
/> */ }
92
91
< div className = 'code-compiler' >
93
- < label for = "code-editor-themes" > Choose a Theme:</ label >
92
+ { /* <label for="code-editor-themes">Choose a Theme:</label>
94
93
<select name="code-editor-themes" id="editor-names">
95
94
<option value="monokai">Monokai</option>
96
95
<option value="github">Github</option>
97
- </ select >
96
+ </select> */ }
98
97
99
- < select class = "selectpicker" data-live-search = "true" class = "form-control" name = "Language" id = "mode" onchange = "changeMode()" >
98
+ { /* <select class="selectpicker" data-live-search="true" class="form-control" name="Language" id="mode" onchange="changeMode()">
100
99
<option value="CSS" id="CSS" selected>CSS</option>
101
100
<option value="JavaScript" id="JavaScript" selected>JavaScript</option>
102
- </ select >
101
+ </select> */ }
103
102
</ div >
104
- < button onClick = { toggleTheme } >
103
+ { /* <button id='code-editor-theme-toggle' onClick={toggleTheme}>
105
104
Toggle theme
106
- </ button >
105
+ </button> */ }
107
106
< AceEditor
108
107
width = "100%"
109
108
height = "100%"
0 commit comments