♻️ separate machine client & user devices tables + move common functions into hooks

This commit is contained in:
Fred KISSIE
2025-12-02 18:58:51 +01:00
parent 3d400b2321
commit 06a31bb716
12 changed files with 1546 additions and 1110 deletions

View File

@@ -2,8 +2,8 @@ import {
useState,
useEffect,
useCallback,
Dispatch,
SetStateAction
type Dispatch,
type SetStateAction
} from "react";
type SetValue<T> = Dispatch<SetStateAction<T>>;