Skip to content

Instantly share code, notes, and snippets.

@jrwebdev
Last active February 9, 2018 06:38
Show Gist options
  • Select an option

  • Save jrwebdev/73893ea8caabf8c8099231b73f7ba55c to your computer and use it in GitHub Desktop.

Select an option

Save jrwebdev/73893ea8caabf8c8099231b73f7ba55c to your computer and use it in GitHub Desktop.
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import withBlueBackground from './withBlueBackground';
import Hello from './Hello';
const BlueHello = withBlueBackground(Hello);
ReactDOM.render(
<BlueHello name="Bob" style={{ fontWeight: 'bold' }} />,
document.getElementById('app')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment