UNPKG

baig-react-accordion

Version:
36 lines (23 loc) 490 B
# Baig React Accordion A simple, customizable accordion component for React. ## Installation To install the package, use npm or yarn: ```bash # with npm npm install baig-react-accordion # with yarn yarn add baig-react-accordion ``` ## Usage ```javascript import { Accordion } from "baig-react-accordion" import "baig-react-accordion/dist/index.css"; function App() { return ( <> <Accordion /> </> ) } export default App; ```