A carbon copy UI to show the web page, based on the traditional view
Using npm:
$ npm i react-carbonui
Using yarn:
$ yarn add react-carbonui
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;
See in actions on Storybook
-
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!