index.js 170 B

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