import { Route, Routes } from 'react-router-dom'; import { Layout } from '../components/layout'; import { HomeView, NotFoundView, ProjectsView, ProjectDetailView, ProjectEditView, TasksView, AnnotationsView, } from '../views'; /** * Annotation Platform Application * * This is the main application component for the annotation platform. * It provides routing and integrates with Layout component for * backend management UI style. * * Requirements: 4.1, 4.2, 4.8, 7.3, 7.6 */ export function App() { return ( {/* Home Route */} } /> {/* Projects Routes */} } /> } /> } /> {/* Tasks Routes */} } /> {/* TODO: Add task annotation route */} {/* } /> */} {/* Annotations Routes */} } /> {/* 404 Not Found */} } /> ); } export default App;