You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
react-redux/js/index.js

9 lines
164 B

import ReactDOM from 'react-dom';
import React from 'react';
import App from './components/app.js';
ReactDOM.render(
<App/>,
document.querySelector('main')
);