import { EditorShell } from "../../../components/editor/EditorShell"; import { aristotleFixture } from "../../../lib/fixtures/aristotle"; // M1: every projectId resolves to the Aristotle fixture. // M4–M5 wire this to a real database lookup. // (EditorShell wraps itself in Suspense for useSearchParams; no boundary // needed at this level.) export default async function EditorPage(_props: { params: Promise<{ projectId: string }> }) { return ; }