GridTableCount.hooks.ts 216 B

12345678910
  1. import { useAppSelector } from '$app/stores/store';
  2. export const useGridTableCount = () => {
  3. const { grid } = useAppSelector((state) => state);
  4. const { rows } = grid;
  5. return {
  6. count: rows.length,
  7. };
  8. };