react-npm-boilerplate
v0.1.2
Published
Make your personal react component and you can import use it.
Downloads
11
Readme
react-npm-boilerplate
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