#
luxiaotao1123
2024-03-13 57aca98a743b4f7a334ba3a070e94dc587af7ce2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React, { useState, useRef, useEffect } from 'react';
import { Drawer } from 'antd';
import { FormattedMessage, useIntl, useModel } from '@umijs/max';
import { createStyles } from 'antd-style';
import * as Utils from '../utils'
import Http from '@/utils/http';
 
const useStyles = createStyles(({ token, css }) => {
 
})
 
const MapDrawer = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
 
    return (
        <>
            <Drawer
 
            />
        </>
    )
}
 
export default MapDrawer;