import React from 'react'; import { Link } from 'react-router-dom'; import { styled } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Paper from '@mui/material/Paper'; import List from '@mui/material/List'; import ListItem from '@mui/material/ListItem'; import EditIcon from '@mui/icons-material/Edit'; import ListItemAvatar from '@mui/material/ListItemAvatar'; import ListItemIcon from '@mui/material/ListItemIcon'; import ListItemText from '@mui/material/ListItemText'; import Avatar from '@mui/material/Avatar'; import IconButton from '@mui/material/IconButton'; import FormGroup from '@mui/material/FormGroup'; import FormControlLabel from '@mui/material/FormControlLabel'; import Checkbox from '@mui/material/Checkbox'; import Grid from '@mui/material/Grid'; import Typography from '@mui/material/Typography'; import FolderIcon from '@mui/icons-material/Folder'; import DeleteIcon from '@mui/icons-material/Delete'; import AddIcon from '@mui/icons-material/Add'; import AddBoxOutlinedIcon from '@mui/icons-material/AddBoxOutlined'; import ListCreateUpdateDelete from '../../../components/list/ListCreateUpdateDelete' import URL from 'constants/url'; import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; function generate(element) { return [0, 1, 2].map((value) => React.cloneElement(element, { key: value, }), ); } const Demo = styled('div')(({ theme }) => ({ backgroundColor: theme.palette.background.paper, })); const Item = styled(Paper)(({ theme }) => ({ backgroundColor: theme.palette.mode === 'dark' ? '#1A2027' : '#fff', ...theme.typography.body2, padding: theme.spacing(1), textAlign: 'center', color: theme.palette.text.secondary, })); function CommitteeCodeMgt(props) { const [dense, setDense] = React.useState(false); const [secondary, setSecondary] = React.useState(false); const Location = React.memo(function Location() { return (
) }); return (
{/* */} {/* */}
{/* */} {/* */}
{/* */}

위원회 코드 관리

:not(style)': { m: 1, width: 245, }, }} > {/* */}
); } export default CommitteeCodeMgt;