joe-react-components v0.7.2
Joe React Components Library
Joe React Components (JRC) is a collection of reusable React components that can be used to build user interfaces. It includes components such as buttons, forms, input fields, and more.
Installation
To install JRC in your project, you can use npm:
npm install joe-react-components
Usage
To use a component from JRC, simply import it into your React application:
import { Button } from 'joe-react-components';
class MyComponent extends React.Component {
render() {
return (
<Button onClick={this.handleClick}>Click me</Button>
);
}
}
Development
To develop and contribute to JRC, follow these steps:
- Clone the repository:
git clone https://github.com/JtMeulen/jrc.git
- Install the dependencies:
npm install
- Start the Storybook development server:
npm run start
Make changes to the components in the src directory.
Build the components using Rollup:
npm run build
- Publish the library to npm:
npm publish
Demo
To see a live demo of the components in action including the documentation on how to use the components, check out this Storybook instance on Netlify.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago