Files
Novault-Frontend-web/copy/src/hooks/index.ts

10 lines
260 B
TypeScript

/**
* Custom hooks barrel export
*/
export { useTheme } from './useTheme';
export type { Theme } from './useTheme';
export { useDevice, useIsMobile, useIsDesktop, useIsTablet } from './useDevice';
export type { DeviceInfo, DeviceType } from './useDevice';