import PageHeader from '@/components/PageHeader';
import Widget from '@/components/Widget';
import Table from '@/components/Table';
import { users } from '../User/mock';
import { Link } from 'react-router-dom';
import { Form, Stack } from 'react-bootstrap';
export const columns = [
{
header: 'ID',
accessorKey: 'username',
cell: ({ id, getValue }) => (
{getValue()}
),
},
{
header: '성명',
accessorKey: 'name',
},
{
header: '부서',
accessorKey: 'department',
},
{
header: '연락처',
accessorKey: 'phone',
},
{
header: 'Email',
accessorKey: 'email',
},
{
header: '권한',
accessorKey: 'role',
cell: ({ row }) => (
{['Discovery', 'Assessment', 'Migration', 'Infra 담당자', 'DB 담당자', 'Application 담당자', '관리자'].map(
(role) => (
),
)}
),
},
];
function AccessControl() {
return (
<>
>
);
}
export default AccessControl;