0.1.0 • Published 6 years ago

react-npm-publish v0.1.0

Weekly downloads
5
License
-
Repository
-
Last release
6 years ago

react-npm-publish

This project is based on create-react-app, in this project you can create your own UI library, and publish it to NPM.

Getting Started

Install dependencies

yarn install
or 
npm install

Start development server

yarn start
or 
npm start

Then you can run this project in your browser http://localhost:3000

Build library

yarn run build
or 
npm run build

Publish library to NPM

npm publish

Example Usage

npm install my-button
import { MyButton } from "my-button";

<MyButton
    type={"default"}
    text={"this is a examle component"}
    onClick={()=>{console.log("clicked")}}
/>