import React from "react"; import { Map, TileUrlTemplateArgs, MapLayers, MapTileLayer, } from "@progress/kendo-react-map"; const tileUrl = (e: TileUrlTemplateArgs) => `https://${e.subdomain}.tile.openstreetmap.org/${e.zoom}/${e.x}/${e.y}.png`; const attribution = "© OpenStreetMap contributors"; export const PunchMap = () => { return (

Employee Punch Map

); };