import {FC} from 'react';
import Filter from './filter';
import {ChildrenFC} from '@utils';
import {context, pageContext, useContextReducer} from './context';
import TableList from './table';
import {PageProvider} from '@components';
const RoleProvider: ChildrenFC = function({children}) {
const state = useContextReducer();
const {Provider} = context;
return {children};
};
const Role: FC = function() {
return (
);
};
export default Role;