1.0.1 • Published 12 months ago

cosaft-ui-library v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

ui-library

NPM version Build npm-typescriptLicense]github-license-url

This repo is the example of the article "How to create and publish React Typescript npm package with demo and automated build".

You can clone it and step by step create your own NPM package and publish it.

It is simple React counter.

Live Demo

Installation:

npm install cosaft-ui-library --save-dev

or

yarn add -D cosaft-ui-library

Usage :

Add MyCounter to your component:

import React from 'react'
import ReactDOM from 'react-dom/client'
import { Test } from 'cosaft-ui-library'

const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
    <React.StrictMode>
        <Test />
    </React.StrictMode>,
)
1.0.1

12 months ago

1.0.0

12 months ago