mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-31 14:18:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			304 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			304 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import { render } from 'react-dom';
 | |
| // It's important to not define HelloWorld component right in this file
 | |
| // because in that case it will do full page reload on change
 | |
| import HelloWorld from './HelloWorld.jsx';
 | |
| 
 | |
| render(<HelloWorld />, document.getElementById('react-root'));
 | 
