// ** React Imports import { useState, useEffect } from "react"; // ** Next Imports import Link from "next/link"; // ** MUI Imports import Box from "@mui/material/Box"; import Card from "@mui/material/Card"; import Grid from "@mui/material/Grid"; import { styled } from "@mui/material/styles"; import MenuItem from "@mui/material/MenuItem"; import Select, { SelectChangeEvent } from "@mui/material/Select"; import Button from '@mui/material/Button' // ** Icon Imports import Icon from "src/@core/components/icon"; // ** Custom Table Components Imports import { FormControl } from "@mui/material"; import InputLabel from "@mui/material/InputLabel"; import List from '@mui/material/List' import ListItem from '@mui/material/ListItem' import ListItemIcon from '@mui/material/ListItemIcon' import ListItemText from '@mui/material/ListItemText' import DialogAlert from "src/views/components/dialogs/DialogAlert"; const LinkStyled = styled(Link)(({ theme }) => ({ fontWeight: 600, fontSize: "1rem", cursor: "pointer", textDecoration: "none", color: theme.palette.text.secondary, "&:hover": { color: theme.palette.primary.main, }, })); const RootDuplicate = () => { // ** State const [statusValue1, setStatusValue1] = useState(""); const [statusValue2, setStatusValue2] = useState(""); const [statusValue3, setStatusValue3] = useState(""); const [statusValue4, setStatusValue4] = useState(""); const handleStatusValue1 = (e: SelectChangeEvent) => { setStatusValue1(e.target.value); }; const handleStatusValue2 = (e: SelectChangeEvent) => { setStatusValue2(e.target.value); }; const handleStatusValue3 = (e: SelectChangeEvent) => { setStatusValue3(e.target.value); }; const handleStatusValue4 = (e: SelectChangeEvent) => { setStatusValue4(e.target.value); }; return ( ルート複製 企業(複製元) 複製するルート(複製元) 企業(複製先) 顧客(複製先) 注意書きなどあれば ); }; RootDuplicate.acl = { action: "manage", subject: "group_admin", }; export default RootDuplicate;