neighborhood999 / react-npm-boilerplate

Make your personal react component and you can import use it.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-npm-boilerplate

Build Status Coverage Status Dependency Status

Make your personal react component.

How To Use

First, install package:

$ npm install

You can create your react component and published on npm.

For example, if I already published and I want to use this component:

import React, { Component } from 'react';
import Test from 'react-npm-boilerplate';

export default class App extends Component {
  render() {
    return (
      <Test />
    );
  }
}

In your website, you can see Hello World as title.

Test

$ npm test

LICENSE

MIT

About

Make your personal react component and you can import use it.


Languages

Language:JavaScript 100.0%