import PageHeader from '@/components/PageHeader'; import Widget from '@/components/Widget'; import Table from '@/components/Table'; import { users } from './mock'; import { Link } from 'react-router-dom'; import { Button, ButtonGroup } from 'react-bootstrap'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faPenToSquare, faTrashCan } from '@fortawesome/free-solid-svg-icons'; 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', }, { header: 'Actions', cell: () => ( ), }, ]; function User() { return ( <> ); } export default User;