'use client'; import type { FC } from 'react'; import { useDetectOS } from '@/hooks'; type WithCurrentOS = { children: FC<{ currentOS: ReturnType }>; }; const WithCurrentOS: FC = ({ children: Component }) => { const osData = useDetectOS(); return ; }; export default WithCurrentOS;