New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@radix-ui/react-presence

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@radix-ui/react-presence


Version published
Maintainers
6
Created
Issues
567

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 10 May 2022

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