fix: autocloseder for input search & button back
ci-front / build (push) Successful in 2m23s

This commit is contained in:
nikita
2026-04-04 05:13:27 +03:00
parent f537f1eab9
commit 43e16b1360
3 changed files with 113 additions and 6 deletions
+6 -1
View File
@@ -1,9 +1,14 @@
import { useNavigate } from "react-router-dom";
import { IDE } from "../modules/ide";
export const IDEPage = () => {
const navigate = useNavigate();
return (
<div className="absolute top-0 left-0 w-full h-full z-90">
<IDE initialFiles={{ name: "тест", type: "folder" }} />
<IDE
onBack={() => navigate("/home")}
initialFiles={{ name: "тест", type: "folder" }}
/>
</div>
);
};