feat: remove folders & create folder

This commit is contained in:
nikita
2026-04-05 03:28:31 +03:00
parent 5073cfd357
commit 178c3b53f7
6 changed files with 206 additions and 38 deletions
+6
View File
@@ -65,6 +65,12 @@ export const IDE: React.FC<IDEProps> = ({
const initialize = useIDEStore((state) => state.initialize);
const isInitialized = useIDEStore((state) => state.isInitialized);
const fetchTree = useIDEStore((state) => state.fetchTree);
const fetchInterpreters = useIDEStore((state) => state.fetchInterpreters);
// Загружаем интерпретаторы при инициализации
useEffect(() => {
fetchInterpreters();
}, []);
// Обработка Ctrl+S
useEffect(() => {