// This program has been developed by students from the bachelor Computer Science at Utrecht // University within the Software Project course. // © Copyright Utrecht University (Department of Information and Computing Sciences) import { Routes, Route, Link } from 'react-router' import './App.css' import Home from './pages/Home/Home.tsx' import Robot from './pages/Robot/Robot.tsx'; import ConnectedRobots from './pages/ConnectedRobots/ConnectedRobots.tsx' import VisProg from "./pages/VisProgPage/VisProg.tsx"; import {useState} from "react"; import Logging from "./components/Logging/Logging.tsx"; function App(){ const [showLogs, setShowLogs] = useState(false); return ( <>
© Utrecht University (ICS) Home
} /> } /> } /> } />
{showLogs && }
); } export default App