0.0.3 • Published 4 years ago

mokosh v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Mokosh JS

UI components library.

Support

React: ^16.0.0

Vue: Soon

Angular: Not planned @ the moment.

Installation

  • for all packages: npm i mokosh
  • for core package only: npm i @mokosh/core

Usage

We will use button component as an example:

import { Button } from 'mokosh';

// OR
import { Button } from '@mokosh/core';

// OR
import Mokosh from 'mokosh';

...
    render() { return <Mokosh.Button />; }
...