Loading...
Please waitLoading...
Please waitNo
pnpm dlx uselab@latest add use-is-client
import { useIsClient } from "@/hooks/use-is-client"
export function Component() {
const isClient = useIsClient()
return (
<div>
<h6>Is Client? </h6>
<p>{isClient ? "If you can see this ... you already know" : "No"}</p>
</div>
)
}| Name | Type | Description |
|---|---|---|
isClient | boolean | true if running in a client-side environment, false otherwise. |