1.0.3 • Published 5 years ago

npm-react-component-kit v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

npm-react-component-kit

npm-react-component-kit is a boilerplate for writing any small size react components to large scale with live testing.

Project Introduce

git clone https://github.com/prasanthLalapeta/npm-react-component-kit.git  

cd npm-react-component-kit

make clean

make setup

Write and export your component in './src/index.js' and import the same component in './examples/src/index.js' so that you can test your component while developing itself.

Start Server

npm start

Packages used for kit

Package Publishing

Before publishing you need to change the repository URL, Homepage, Author, Description and Issues URL from the package.json file and run the folowwing commands.

make publish

Installation

Install it from npm and include it in your React build process (using Webpack, Browserify, etc).

npm install --save-dev npm-react-component-kit

or:

yarn add npm-react-component-kit

Usage

import React from 'react';
import SampleComponent from 'npm-react-component-kit';

class MySampleComponent extends React.Component {
   render() {
    return (
      <SampleComponent />
    );
  }
}

License

MIT

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago