

Custom hook that determines if the code is running on the client side (in the browser).

## Usage [#usage]

```tsx
import { useIsClient } from "@tilt-legal/cubitt-components/utilities/hooks";

const isClient = useIsClient();
// Use isClient to conditionally render or execute code specific to the client side.
```

## API [#api]

### Signature [#signature]

```ts
declare function useIsClient(): boolean;
```

### Parameters [#parameters]

This hook takes no arguments.

### Return Value [#return-value]

| Value    | Type      | Description                                                                |
| -------- | --------- | -------------------------------------------------------------------------- |
| `return` | `boolean` | A boolean value indicating whether the code is running on the client side. |
