Quickstart
Get started with Base UI, a library of headless ("unstyled") React UI components and low-level hooks.
Installation
@base_ui/react is completely standalone – run one of the following commands to add Base UI to your React project:
npm install @base_ui/reactPeer dependencies
Please note that react and react-dom are peer dependencies, meaning you should ensure they are installed before installing Base UI.
"peerDependencies": {
  "react": "^17.0.0 || ^18.0.0",
  "react-dom": "^17.0.0 || ^18.0.0"
},