Add: migration to new backend

This commit is contained in:
Jose
2026-02-24 03:39:49 +01:00
parent 589215b2bc
commit 4d0c4d3f26
13 changed files with 4686 additions and 222 deletions

View File

@@ -2,13 +2,6 @@ import Editor from "@monaco-editor/react";
import { useTheme } from "@/hooks/useTheme";
import { useRef } from "react";
import PropTypes from "prop-types";
import { loader } from '@monaco-editor/react';
loader.config({
'vs/nls': {
availableLanguages: { '*': 'es' },
},
});
const CodeEditor = ({ className = "", syntax, readOnly, onChange, value }) => {
const { theme } = useTheme();