@manhphi1309/hooks
v0.3.4
Published
A collection of utility React hooks used across components.
Downloads
1,202
Readme
@manhphi1309/hooks
A collection of utility React hooks used across components.
Subcomponents
This package provides the following hooks:
useIsMobile
Dependencies
This package relies on:
react
Installation
npm install @manhphi1309/hooksUsage Example
import { useIsMobile } from "@manhphi1309/hooks"
export default function Example() {
const isMobile = useIsMobile()
return <div>{isMobile ? "Mobile View" : "Desktop View"}</div>
}