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;