10 lines
260 B
TypeScript
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';
|