0.1.1 • Published 3 years ago

use-width v0.1.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

use-width

NPM package to use width of screen size dynamically for responsive design

Import

import useWidth from 'use-width';

Usage

const [width] = useWidth();
const component = width > 600 ? <DestopComponent> : <PhoneComponent>;

or

<div style={{ fontSize: width > 600 ? "2rem" : "1rem" }}/>

Width is in pixels.