1.0.3 • Published 5 years ago
dummy-master v1.0.3
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')
);