corelabui
v0.0.10
Published
Collection of ready-to-use customisable React components available in multiple themes
Downloads
7
Maintainers
Readme
Corelab UI
Corelab UI is a collection of ready-to-use React components that aims to speed up the development process of user interfaces. With Corelab UI, you can quickly integrate beautifully designed and highly functional components into your React projects. The components are customisable but you can also select from one of the library's popular themes that follow the latest UX design trends.
Installation
Corelab UI is available as an npm package.
Make sure you have Node.js installed on your machine. Then run:
npm install corelabui
Usage
Here is an example of a basic app using Corelab UI's Button component from the classic theme:
import Button from 'corelabui/Button';
function App() {
return (
<Button onClick={() => console.log('Hello Corelab UI')}>
Click me!
</Button>
);
}