# Permission requests

The default component to display a list of permission requests from other call participants is called `PermissionRequests`. The component takes care of:

1. listing the permission requests if the user has permissions to grant permissions
2. displaying the buttons to grant or ignore the permission requests

![Default UI of permission request notification](https://getstream.io/docs-assets/images/82d36fc23b25.png)

![Default UI of permission requests listing](https://getstream.io/docs-assets/images/7789ae8a3b13.png)

## General usage

The default component is just rendered without passing any props:

```tsx
import { PermissionRequests } from "@stream-io/video-react-sdk";

const MyComponent = () => {
  // omitted code ...

  return (
    /* omitted code ... */
    <PermissionRequests />
    /* omitted code ... */
  );
};
```

## Customization

The component is not customizable through props, only by applying CSS to elements it renders.

>
> **Note:** To learn more about creating custom permission requests listings, see our [permission requests customization guide](https://getstream.io/video/docs/react/v2/ui-cookbook/permission-requests/).
>

---

For the most recent version of this documentation, visit [https://getstream.io/video/docs/react/v2/ui-components/utility/permission-requests/](https://getstream.io/video/docs/react/v2/ui-components/utility/permission-requests/).