kantan-components
v0.4.3
Published
Kantan-Components is a lightweight React Utility Components library. The project is still work-in-progress, and the Documentation can be found [here](https://kantan-components-docs.netlify.app/).
Maintainers
Readme
Kantan-Components
Kantan-Components is a lightweight React Utility Components library. The project is still work-in-progress, and the Documentation can be found here.
Get started
Run the following command
npm install kantan-componentsOr do it with yarn:
yarn add kantan-componentsNext, import the component that you need. Learn more in the documentation.
import { Tooltip } from "kantan-components";
const App = () => (
<div>
<Tooltip text="default position">
<strong>Hover over.</strong>
</Tooltip>
</div>
);