Skip to content

Instantly share code, notes, and snippets.

@msteckyefantis
Created November 4, 2017 19:31
Show Gist options
  • Save msteckyefantis/74cb6c73a4ebe9fe3f70ed285750b7c0 to your computer and use it in GitHub Desktop.
Save msteckyefantis/74cb6c73a4ebe9fe3f70ed285750b7c0 to your computer and use it in GitHub Desktop.
'use strict';
const React = require( 'react' );
const e = React.createElement;
module.exports = class MegaGreenSquare extends React.Component {
render() {
return e(
'div',
{
style: {
backgroundColor: 'green',
width: 100,
height: 100,
},
}
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment