react-compbook
v1.3.2
Published
React Component Book UI UI is an open-source React component library, designed to offer a sleek, customizable, and easy-to-use collection of components for building modern user interfaces.
Readme
title: React-Compbook UI
import { Button, Input } from 'react-compbook';
Table of Contents
Installation
Install React-Compbook UI in your project directory with:
npm install react-compbook
pnpm install react-compbookor with Yarn:
yarn add react-compbookUsage
Once installed, you can start importing and using React-Compbook components in your React application. Here's a quick example:
import { Button } from 'react-compbook';
function App() {
return (
<div>
<Button label="Button Label" variant="primary" />
</div>
);
}
export default App;Documentation
For detailed documentation and live examples, click here.
Example
import { Button } from 'react-compbook';
function ExampleComponent() {
return <Button label="Click Me!" variant="primary" />;
}License
React-Compbook UI is licensed under the MIT License. Feel free to use it in your projects, both personal and commercial.
