11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
"use client";
|
|
|
|
import { EditorShell } from "@/app/_components/editor-shell";
|
|
import { searchConfig } from "@/config/configs";
|
|
import schema from "@/app.schema.json";
|
|
|
|
export default function SearchEditorPage() {
|
|
const data = (schema as any)["/search"];
|
|
return <EditorShell config={searchConfig} data={data} routeKey="/search" />;
|
|
}
|