import {Card, Space, Button, Table} from 'antd';
import {FC} from 'react';
import {useHandle, useList} from './hooks';
import {usePage} from '@hooks';
import {pageContext} from '../context';
import {PAGE_SIZE_LIST} from '@utils';
import RoleModal from './modal';
import TreeModal from './tree-modal';
const TableList: FC = function() {
const [{data, isFetching, count}, refetch] = useList();
const [{page, pageSize}, {onPageChange}] = usePage(pageContext);
const [
{columns, visible, editId, roleVisible, roleId},
{onAdd, onClose, onRoleClose},
] = useHandle(data, refetch);
return (
<>
>
);
};
export default TableList;