Skip to content

hidaytrahman/react-carbonui

Repository files navigation

react-carbonui

A carbon copy UI to show the web page, based on the traditional view

Installation

Using npm:

$ npm i react-carbonui

Using yarn:

$ yarn add react-carbonui

Usage

import { Button } from "react-carbonui";

<Button label="Click me" />;

You may use it just like any other component by importing it.

import { Button } from "react-carbonui";

const MyComp = ({}) => {
  return <Button label="Hello World!" />;
};

export default MyComp;

Docs

Get started

See in actions on Storybook




Contribution Doc

  1. Fork and in local run npm install or yarn install

  2. Run the storybook (to test/see the components)

    $ npm run storybook

  3. Add new feature or see the https://github.com/hidaytrahman/react-carbonui/issues do the magic

  4. Open a PR (Write proper details about the feature or fixes)

Thats it!