skyouc
2025-04-09 6c5edf41ef56af07e6e3baa25f77759ecaf8f68c
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
26
27
28
import React, { useState, useRef, useEffect, useMemo } from "react";
import { Box, Card, CardContent, Grid, Typography, Tooltip } from '@mui/material';
import {
    useTranslate,
    useRecordContext,
} from 'react-admin';
import PanelTypography from "../../components/PanelTypography";
import * as Common from '@/utils/common'
 
const LocAreaMatRelaPanel = () => {
    const record = useRecordContext();
    if (!record) return null;
    const translate = useTranslate();
    return (
        <>
            <Card >
                <CardContent>
                    <Grid container spacing={2}>1</Grid>
                    <Grid container spacing={2}>1</Grid>
                    <Grid container spacing={2}>1</Grid>
 
                </CardContent >
            </Card >
        </>
    );
};
 
export default LocAreaMatRelaPanel;