Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
13 lines (9 sloc) 296 Bytes
import React from 'react';
import {render} from 'react-dom';
import App from './App';
const appElement = (<App />);
// In a browser environment, render instead of exporting
if (typeof window !== 'undefined') {
render(appElement, document.getElementById('root'));
}
export default appElement;