File size: 312 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App-Multi-Index';
import Mentions from './App-Mentions';
ReactDOM.render(
<App />,
document.getElementById('autocomplete-with-multi-indices')
);
ReactDOM.render(<Mentions />, document.getElementById('autocomplete-mentions'));
|