import { Routes, Route } from "react-router-dom"; import AppShell from "./components/shared/AppShell"; import DashboardView from "./routes/DashboardView"; import EditorView from "./routes/EditorView"; import GraphView from "./routes/GraphView"; export default function App() { return ( } /> } /> } /> } /> ); }