react-component-style
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

React-component-style

Demo react-component-style

Installation

You can install this demo UI library using npm:

npm install react-component-style

Usage

To use this react-component-style in your project, import the components you need from the library and use them in your React components.

import React from "react";
import { Input, Button } from "react-component-style";

function App() {
  return (
    <div>
      <Input
        id="name"
        disabled={false}
        label="Enter your name"
        message="This field is required"
        error={false}
        success={false}
        onChange={(e) => console.log(e.target.value)}
        placeholder="Enter your name here"
      />
      <Button
        size="medium"
        primary={true}
        disabled={false}
        text="Click me!"
        onClick={() => alert("Button clicked!")}
      />
    </div>
  );
}

export default App;

Contributing

This library is a demo for learning purposes only and is not intended to be contributed to. You can fork the repository and use the code for your personal use or learning.

Steps

  • Fork the repository.
  • Clone the repository to your local machine.
  • Install the dependencies using npm install.
  • View the components in the browser using npm run storybook.
  • Make your changes.
  • Test the changes using npm test.
  • Build the library using npm run build.
  • Commit the changes and push them to your forked repository.
  • Publish the package on npm.
  • Install and use the package in your project.

License

This demo UI library is licensed under the MIT

Connect

More of my articles can be found in Hduc. Connect with me on Facebook: @hducit

Readme

Keywords

Package Sidebar

Install

npm i react-component-style

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

66.7 kB

Total Files

58

Last publish

Collaborators

  • hduc