11 lines
363 B
TypeScript
11 lines
363 B
TypeScript
import { CodeEditorView } from 'officerdev';
|
|
import { Widget } from 'widgets/Widget';
|
|
|
|
export const CodeEditor = () => (
|
|
<div className="h-full w-full flex items-center justify-center">
|
|
<Widget title="Code Editor" className="h-[70vh] w-[70vw] overflow-hidden" resizable moveable>
|
|
<CodeEditorView className="h-full w-full" />
|
|
</Widget>
|
|
</div>
|
|
);
|