Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@hudoro/accordion
Advanced tools
Hudoro accordion is a strict and customizable accordion component for web development projects, designed for simplicity and adherence to strict design guidelines.
Instal package using pnpm
pnpm add @hudoro/accordion
Instal package using yarn
yarn add @hudoro/accordion
Instal package using npm
npm i @hudoro/accordion
import React from "react";
import ReactDOM from "react-dom/client";
import {
Accordion,
AccordionButton,
AccordionItem,
AccordionPanel,
} from "@hudoro/accordion";
const App = () => (
<div>
<h1>Testing Accordion Component</h1>
<Accordion>
<AccordionItem>
<AccordionButton>button 1</AccordionButton>
<AccordionPanel>Panel 1</AccordionPanel>
</AccordionItem>
<AccordionItem>
<AccordionButton>button 2</AccordionButton>
<AccordionPanel>Panel 2</AccordionPanel>
</AccordionItem>
</Accordion>
</div>
);
ReactDOM.createRoot(document.getElementById("app")!).render(<App />);
Prop Name | Value | required |
---|---|---|
children | ReactNode | false |
allowMultiple | boolean | false |
Prop Name | Value | required |
---|---|---|
children | ReactNode | false |
Prop Name | Value | required |
---|---|---|
children | ReactNode | false |
Prop Name | Value | required |
---|---|---|
children | ReactNode | false |
FAQs
Accordion component for Hudoro UI
The npm package @hudoro/accordion receives a total of 0 weekly downloads. As such, @hudoro/accordion popularity was classified as not popular.
We found that @hudoro/accordion demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.