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
29
30
31
32
33
34
35
36
37
| import React, { useState, useRef, useEffect, useMemo } from "react";
| import {
| Edit,
| SimpleForm,
| FormDataConsumer,
| useTranslate,
| TextInput,
| NumberInput,
| BooleanInput,
| SaveButton,
| SelectInput,
| Toolbar,
| Labeled,
| NumberField,
| required,
| useRecordContext,
| DeleteButton,
| } from 'react-admin';
| import { useWatch, useFormContext } from "react-hook-form";
| import { Stack, Grid, Box, Typography, Card, CardContent } from '@mui/material';
| import * as Common from '@/utils/common';
| import { } from '@/config/setting';
|
| const Settings = () => {
|
| return (
| <>
| <Card>
| <CardContent>
|
| </CardContent>
| </Card>
| </>
| )
| }
|
| export default Settings;
|
|