Skip to content

Instantly share code, notes, and snippets.

View dmitrizzle's full-sized avatar

Dmitri dmitrizzle

View GitHub Profile
import loadPolyfills from './load-polyfills';
import mountApp from './app'; // the entry point for the rest of my app
loadPolyfills().then(mountApp);
const wrapperStyle = {
position: 'relative'
}
const PlaceHolder = React.createClass({
renderPlaceholder(){
const { node, state, parent } = this.props;
const placeholderText = node.data.get('placeholderText');
return (