old-ybbond

My old site that was written with ReactJS
Log | Files | Refs | README | LICENSE | CC-LICENSE

index.js (211B)


      1 // @flow
      2 import React from 'react';
      3 import {render} from 'react-dom';
      4 import App from './App.js';
      5 
      6 const rootElement = document.getElementById('react-app');
      7 
      8 if (rootElement) {
      9   render(<App />, rootElement);
     10 }