dataProvider doesn't take the pagination that passed in the hook
const { tableProps } = useTable<IColor>({
pagination: {
pageSize: 5,
current: 1,
mode: "server",
},
});
i tried to pass pagination to the hook but it doesn't take it somehow
pagination: {
pageSize: 5,
current: 1,
mode: "server",
},
});
i tried to pass pagination to the hook but it doesn't take it somehow
