feat: IDE
ci-front / build (push) Successful in 2m19s

This commit is contained in:
nikita
2026-04-04 04:59:42 +03:00
parent 9d1096a9b4
commit f537f1eab9
20 changed files with 2884 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
import { IDE } from "../modules/ide";
export const IDEPage = () => {
return (
<div className="absolute top-0 left-0 w-full h-full z-90">
<IDE initialFiles={{ name: "тест", type: "folder" }} />
</div>
);
};