Overview
A collection of reusable React components built with accessibility and customization in mind.
Components
- Button variants (primary, secondary, outline, ghost)
- Form inputs with validation states
- Modal and Dialog components
- Toast notifications
- Data tables with sorting and pagination
Development
npm install @busahinku/react-ui
import { Button, Modal } from '@busahinku/react-ui';
function App() {
return (
<Button variant="primary" onClick={() => {}}>
Click me
</Button>
);
}
Testing
All components have unit tests with Jest and React Testing Library, achieving 90%+ code coverage.
(0)