File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const MONACO_EDITOR_CONFIG = {
38
38
} ,
39
39
} ;
40
40
41
- export const EvalscriptEditor = ( { onRunEvalscriptClick } ) => {
41
+ export const CodeEditor = ( { onRunEvalscriptClick } ) => {
42
42
const editorDOMRef = useRef ( ) ;
43
43
const editorRef = useRef ( ) ;
44
44
const monacoRef = useRef ( ) ;
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
- import { EvalscriptEditor } from "../CodeEditor/CodeEditor" ;
2
+ import { CodeEditor } from "../CodeEditor/CodeEditor" ;
3
3
4
4
export default function Wrapper ( ) {
5
5
return (
6
6
< div
7
7
style = { { height : "100vh" , width : 400 , background : "black" } }
8
8
className = "panel"
9
9
>
10
- < EvalscriptEditor onRunEvalscriptClick = { ( ) => console . log ( "running" ) } />
10
+ < CodeEditor onRunEvalscriptClick = { ( ) => console . log ( "running" ) } />
11
11
< h1 style = { { color : "white" } } >
12
12
Wrapper to simulate parent div in apps like EOB and RB
13
13
</ h1 >
You can’t perform that action at this time.
0 commit comments