You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP

@radix-ui/react-presence

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@radix-ui/react-presence

1.1.3
latest
Version published
Weekly downloads
17M
-5.06%
Maintainers
6
Weekly downloads
 
Created

What is @radix-ui/react-presence?

@radix-ui/react-presence is a utility component for managing the presence of elements in the DOM. It helps in handling the mounting and unmounting of components with animations or transitions, making it easier to manage component lifecycles in a React application.

What are @radix-ui/react-presence's main functionalities?

Presence

The `Presence` component is used to conditionally render its children based on the `present` prop. This is useful for managing the presence of elements in the DOM, especially when combined with animations or transitions.

```jsx
import { Presence } from '@radix-ui/react-presence';

function Example() {
  const [isVisible, setIsVisible] = React.useState(false);

  return (
    <div>
      <button onClick={() => setIsVisible(!isVisible)}>
        Toggle Presence
      </button>
      <Presence present={isVisible}>
        <div className="content">Hello, I am here!</div>
      </Presence>
    </div>
  );
}
```

Other packages similar to @radix-ui/react-presence

FAQs

Package last updated on 08 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts