Leon4gr45's picture
Deploy to clean space
75fefa7 verified
"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]} />;
}