index.js 211 Bytes
Newer Older
1 2
import React from 'react';
import ReactDOM from 'react-dom';
mayi's avatar
mayi committed
3
import TotoList from './TotoList'
4 5
ReactDOM.render(
  <React.StrictMode>
mayi's avatar
mayi committed
6
    <TotoList />
7 8 9 10
  </React.StrictMode>,
  document.getElementById('root')
);