index.js 182 B

12345678910
  1. 'use strict';
  2. import React from 'react';
  3. import io from './io';
  4. import Index from './components/Index';
  5. React.render(
  6. <Index io={io} />,
  7. document.getElementById('container')
  8. );