feat: added VisProgPage to linked pages in Home.tsx and App.tsx

BREAKING: renamed Sidebar to DndToolbar.

ref: N25B-114
This commit is contained in:
JGerla
2025-10-12 13:56:06 +02:00
parent cf77267e95
commit 5cbcf30f68
2 changed files with 3 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import './App.css'
import TemplatePage from './pages/TemplatePage/Template.tsx'
import Home from './pages/Home/Home.tsx'
import Robot from './pages/Robot/Robot.tsx';
import VisProg from "./pages/VisProgPage/VisProg.tsx";
function App(){
return (
@@ -14,6 +15,7 @@ function App(){
<Routes>
<Route path="/" element={<Home />} />
<Route path="/template" element={<TemplatePage />} />
<Route path="/editor" element={<VisProg />} />
<Route path="/robot" element={<Robot />} />
</Routes>
</main>

View File

@@ -12,6 +12,7 @@ function Home() {
</div>
<div className={styles.links}>
<Link to={"/robot"}>Robot Interaction </Link>
<Link to={"/editor"}>editor </Link>
<Link to={"/template"}>Template </Link>
</div>
</div>