dummy-master

React UI Component library

Usage no npm install needed!

<script type="module">
  import dummyMaster from 'https://cdn.skypack.dev/dummy-master';
</script>

README

React Dummy Project

React component library.

Installation

install using npm:

npm install dummy-master

Basic usage

In the following example, you can see how to import PushButton component and render it with title "Agree" and green background color.

import React from 'react';
import ReactDOM from 'react-dom';
import { PushButton } from "dummy-master";

ReactDOM.render(
  <PushButton title="Agree" color="green" />,
  document.getElementById('app')
);