#
luxiaotao1123
2024-10-14 282e950afa48ae243917d02a713a7f512762e761
zy-acs-flow/src/map/batch/BatchSettings.jsx
@@ -1,10 +1,19 @@
import React, { useState, useRef, useEffect } from 'react';
import { useTranslate } from "react-admin";
import { Box, Typography, IconButton, Stack, useTheme, Card, CardContent, Divider } from '@mui/material';
import JsonShow from '../JsonShow';
const BatchSettings = () => {
const BatchSettings = (props) => {
    const { data } = props;
    return (
        <>
            <h1>s</h1>
        </>
        <Box>
            <JsonShow
                data={data}
                height={600}
            />
        </Box>
    )
}