rollpkg-example-package
Version:
Example package for Rollpkg
19 lines (15 loc) • 706 B
JavaScript
import * as React from 'react';
const randomNumber0to255 = () => Math.floor(256 * Math.random());
const randomRGBColorGenerator = () => {
const red = randomNumber0to255();
const green = randomNumber0to255();
const blue = randomNumber0to255();
return [red, green, blue];
};
const ColorBlock = ({ width, height, rgbColor, }) => React.createElement("div", { style: { width, height, backgroundColor: `rgb(${rgbColor})` } });
// only add displayName in development to help with debugging
if (process.env.NODE_ENV !== 'production') {
ColorBlock.displayName = 'ColorBlock';
}
export { ColorBlock, randomRGBColorGenerator };
//# sourceMappingURL=rollpkg-example-package.esm.js.map