statenent tmp

This commit is contained in:
Виталий Лавшонок
2025-10-28 17:02:26 +03:00
parent 330450c272
commit edd4426780
3 changed files with 225 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ import { Route, Routes } from "react-router-dom";
import Home from "./pages/Home";
import CodeEditor from "./views/problem/codeeditor/CodeEditor";
import Statement from "./views/problem/statement/Statement";
import ProblemStatement from "./views/problem/statement/Proble";
function App() {
return (
@@ -15,7 +16,7 @@ function App() {
<Route path="/home/*" element={<Home/>}/>
<Route path="/editor" element={<div className="box-border p-[50px] w-full h-[800px] relative bg-red-8001"><CodeEditor/></div>}/>
<Route path="/statement" element={<div className="box-border p-[50px] w-full h-[800px] relative bg-red-8001"><Statement/></div>}/>
<Route path="*" element={<Home/>}/>
<Route path="*" element={<ProblemStatement/>}/>
</Routes>
{/* <Switch