Skip to content

Commit c19502e

Browse files
committed
change back name from evalscripteditor to codeedtior
1 parent 349f152 commit c19502e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/CodeEditor/CodeEditor.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const MONACO_EDITOR_CONFIG = {
3838
},
3939
};
4040

41-
export const EvalscriptEditor = ({ onRunEvalscriptClick }) => {
41+
export const CodeEditor = ({ onRunEvalscriptClick }) => {
4242
const editorDOMRef = useRef();
4343
const editorRef = useRef();
4444
const monacoRef = useRef();

src/components/Wrapper/Wrapper.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import React from "react";
2-
import { EvalscriptEditor } from "../CodeEditor/CodeEditor";
2+
import { CodeEditor } from "../CodeEditor/CodeEditor";
33

44
export default function Wrapper() {
55
return (
66
<div
77
style={{ height: "100vh", width: 400, background: "black" }}
88
className="panel"
99
>
10-
<EvalscriptEditor onRunEvalscriptClick={() => console.log("running")} />
10+
<CodeEditor onRunEvalscriptClick={() => console.log("running")} />
1111
<h1 style={{ color: "white" }}>
1212
Wrapper to simulate parent div in apps like EOB and RB
1313
</h1>

0 commit comments

Comments
 (0)