mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import Router from './router';
|
|
|
|
window.onload = () => {
|
|
ReactDOM.render(<Router/>, document.getElementById('main'));
|
|
};
|