Files
patchy631--ai-engineering-hub/open-agent-builder/components/app/(home)/sections/endpoints/EndpointsMap/EndpointsMap.tsx
T
2026-07-13 12:37:47 +08:00

12 lines
337 B
TypeScript

"use client";
import { ComponentProps } from "react";
import EndpointsScrape from "@/components/app/(home)/sections/endpoints/EndpointsScrape/EndpointsScrape";
export default function EndpointsMap(
props: ComponentProps<typeof EndpointsScrape>,
) {
return <EndpointsScrape {...props} disabledCells={[1, 2, 3, 7, 9, 12, 15]} />;
}