react-npm-boilerplate

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

Usage no npm install needed!

<script type="module">
  import reactNpmBoilerplate from 'https://cdn.skypack.dev/react-npm-boilerplate';
</script>

README

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