React-ui-essentials is an open-source React component library built with React. It's comprehensive and can be used in production out of the box. Made with create-react-library
npm install react-ui-essentialsbash
Using npm
npm i react-ui-essentials --save
Using yarn
yarn add react-ui-essentials --save
Using pnpm
pnpm add react-ui-essentials --save
Using bun
bun add react-ui-essentials --save
`
## 👉 Getting set up
To start using the components, please follow these steps:
`bash
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.jsx";
import "react-ui-essentials/dist/index.css"; // once import styles in the main file
ReactDOM.createRoot(document.getElementById("root")).render(
);
``
| Accordion | Alert | Avatar | Badge |
| Banner | Breadcrum | Box | Button |
| Cards | CloseButton | ContentScrollable | Drawer |
| Dropdown | Fieldset | Figure | Forms |
| FullScreen Toggle | Grid Background | Grid System | Guides |
| Hooks | Icons | JsonViewer | Link |
| LinkBar | Link Button | Lists | Model |
| NonIdealState | Popover | Ripple | SectionHeader |
| State Management | Spinner | Splitters | Stack |
| Text Highlighter | Table | Tag | Tabs |
| Toast | Typography |