spack-ui
v1.0.0
Published
An enterprise-class UI design language and React components implementation
Readme
reactify-ui
A simple React component library with Button and Dropdown components.
Installation
npm install spack-ui
```jsx
import { Button, Dropdown } from 'my-component-library';
function App() {
const options = [
{ label: 'Apple', value: 'apple' },
{ label: 'Banana', value: 'banana' },
];
return (
<div>
<Button variant="primary">Click Me</Button>
<Dropdown options={options} defaultLabel="Select" />
</div>
);
}