Files
Frontend/src/hooks/useSensorHub.ts
T
2026-04-02 23:44:24 +03:30

14 lines
326 B
TypeScript

"use client";
export {
FARM_HUB_STORAGE_KEY as SENSOR_HUB_STORAGE_KEY,
getStoredFarmHub as getStoredSensorHub,
getStoredFarmUuid as getStoredSensorHubId,
useFarmHub as useSensorHub,
} from "./useFarmHub";
export type {
FarmHubInfo as SensorHubInfo,
UseFarmHubReturn as UseSensorHubReturn,
} from "./useFarmHub";