Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 698 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 698 Bytes

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-components

Or do it with yarn:

yarn add kantan-components

Next, 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>
);