Files
open-lovable/components/app/(home)/sections/endpoints/EndpointsMap/EndpointsMap.tsx
T
Developers Digest 836b085f75 continue re-design
2025-09-05 13:06:17 -04: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]} />;
}