cyb/src/components/helpers/withDevice.tsx

import { useDevice } from 'src/contexts/device';

function withDevice(Component: React.ComponentType<any>) {
  return (props: any) => {
    const { isMobile: mobile } = useDevice();
    return <Component {...props} mobile={mobile} />;
  };
}

export default withDevice;

Synonyms

pussy-ts/src/components/helpers/withDevice.tsx

Neighbours