Skip to main content

Accordion

RapidUIX Accordion

Use this to trigger actions in the UI.

Live Editor
function Demo() {
  return (
    <button onClick={() => alert("Clicked!")}>
      Click Me
    </button>
  );
}
Result
Loading...