You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
salary-management-oneself/src/pages/personnelReport/reportScreen/components/map.tsx

26 lines
464 B
TypeScript

/*
* Author:
* name:
* Description:
* Date: 2023/5/4
*/
import React, { FC } from "react";
import Chart from "@/utils/chart";
import { mapOptions } from "./options";
import styles from "./index.less";
interface OwnProps {
}
type Props = OwnProps;
const Map: FC<Props> = (props) => {
return (
<div className={styles.mapWrapper}>
<Chart renderer={"canvas"} option={mapOptions({})}/>
</div>
);
};
export default Map;