react-carbonui
v2.1.1
Published
A carbon copy UI to show the web page based on the traditional view
Downloads
16
Maintainers
Readme
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
See in actions on Storybook
Contribution Doc
Fork and in local run
npm install
oryarn install
Run the storybook (to test/see the components)
$ npm run storybook
Add new feature or see the https://github.com/hidaytrahman/react-carbonui/issues do the magic
Open a PR (Write proper details about the feature or fixes)
Thats it!