kama-react-ui-kit
v0.0.26
Published
Collection of React UI components for Kamatech projects.
Downloads
7
Readme
Collection of React UI components for Kamatech projects.
You can clone this repo and modify the components.
It is a collection of React UI components for Kamatech projects.
Installation:
npm install kama-react-ui-kit
or
yarn add kama-react-ui-kit
Usage :
Add KamaSample
to your component:
import React from 'react'
import ReactDOM from 'react-dom/client'
import { KamaSample } from 'kama-react-ui-kit'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<React.StrictMode>
<div>
<h2>Default counter</h2>
<KamaSample />
</div>
<hr />
<div>
<h2>Counter with predefined value</h2>
<KamaSample defaultValue={5} />
</div>
</React.StrictMode>,
)