mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
7 lines
184 B
JavaScript
7 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'));
|
|
};
|