import { Route, Switch } from 'wouter' import { ChatStatesPage } from './ChatStatesPage' import { DevIndexPage } from './DevIndexPage' import { HarnessDebugPage } from './HarnessDebugPage' import { TextureLabPage } from './TextureLabPage' import { ToolCallsPage } from './ToolCallsPage' // All /dev/* routes, colocated with their pages so the whole dev playground // (and its dependencies) lives in this folder and loads as one lazy chunk — // see the dynamic import in AppRouter. /dev itself is the index; list new // routes there too. export default function DevRoutes() { return ( ) }