1.0.3 • Published 5 years ago

module-react v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

Module React

represents one module of the banking game simulation

currently, this component can be imported:

const ReactColorSquare = props => {
  const { width, height, color, text } = props;
  return (
    <div
      style={{
        width: width || 100,
        height: height || 100,
        backgroundColor: color || "blue"
      }}
    >
      {text}
    </div>
  );
};

with

import ReactColorSquare from "module-react";