The design system to democratize a UI unification process of BI tools.
You can install Gene UI components using npm or yarn:
# Yarn
yarn add @geneui/components
# NPM
npm install --save @geneui/components
To use a component in your project, first you need to import the provider in your main component e.g. in the App.js file
import GeneUIProvider from '@geneui/components/GeneUIProvider';
Then you need to wrap your main component with provider
<GeneUIProvider>
<App />
</GeneUIProvider>
Now you can start use any components available in the package
import { Button } from '@geneui/components';
function App() {
return (
<div>
<Button>Do action</Button>
</div>
);
}
Explore in-depth documentation to make the most out of Gene UI components.
Visit our API Reference for detailed information on each component, including props and usage examples.
We welcome contributions from the community! Here's how you can get involved:
π See the contributing docs for more info on code style, testing, coverage, and troubleshooting.
Stay up-to-date with the latest changes and improvements by checking our Changelog.
The Gene UI design system is licensed under the MIT License