Skip to content

Instantly share code, notes, and snippets.

@jnsdls
Created September 13, 2016 08:00
Show Gist options
  • Save jnsdls/6d34cbf313b3dee48d878867f880dbee to your computer and use it in GitHub Desktop.
Save jnsdls/6d34cbf313b3dee48d878867f880dbee to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
import App from './js/components/App.jsx';
// wait for all JS executions until the Bebo SDK has finished loading
Bebo.onReady(() => {
ReactDOM.render(
<App />,
document.getElementById('app')
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment