import {FC} from 'react';
import {Card} from 'antd';
import {useHandle, useList} from './hooks';
import Modal from './modal';
import {Table, TableTools} from '@components';
import {pageContext, searchContext} from '../context';
const TableList: FC = function() {
const [
{count, data},
{refetch},
] = useList();
const [
{modalVisible, columns, editState},
{onAdd, setFalse},
] = useHandle(refetch);
return (
<>
>
);
};
export default TableList;