uibora
v1.0.7
Published
A collection of advanced, reusable React components designed to simplify complex UI development and enhance performance.
Readme
Uibora
A collection of advanced, reusable React components designed to simplify complex UI development and enhance performance.
Uibora blends 'UI' for sleek interfaces with 'Ubora' (Swahili for excellence), to deliver top-tier front-end components for modern applications.
License
This project is dual-licensed under:
MIT License – for open-source and personal projects. Commercial License – for proprietary or commercial use.
See LICENSE for details.
Demos
See https://uibora.scroow.com for live demos
Public Package
All releases (tags) are published on npm : https://www.npmjs.com/package/uibora
Installation
You can install the package using npm or yarn:
npm install uiboraor
yarn add uiboraUsage
Here is a basic example of how to use uibora in your project:
import { Spinner } from 'uibora/progress';
const App = () => {
return <>
<Spinner size='big' />
</>
}