1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| 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 = (props) => {
| const { data } = props;
|
| return (
| <Box>
| <JsonShow
| data={data}
| height={600}
| />
| </Box>
| )
| }
|
| export default BatchSettings;
|
|