page.tsx 201 B

12345678910111213
  1. "use client";
  2. import React from 'react';
  3. import GisMap from "@/components/gisMap";
  4. const BaiduMapPage = () => {
  5. return (
  6. <GisMap height={'50'} />
  7. );
  8. };
  9. export default BaiduMapPage;