mokosh

set of js ui components

Usage no npm install needed!

<script type="module">
  import mokosh from 'https://cdn.skypack.dev/mokosh';
</script>

README

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 />; }
...