mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-31 08:26:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import "babel-polyfill";
 | |
| import "intl";
 | |
| import "intl/locale-data/jsonp/en-US.js"
 | |
| import React from "react";
 | |
| import ReactDOM from "react-dom";
 | |
| import App from "../src/";
 | |
| 
 | |
| document.addEventListener("DOMContentLoaded", () => {
 | |
|   ReactDOM.render(<App />, document.getElementById("root"));
 | |
| });
 |