mirror of
				https://github.com/Tencent/tmagic-editor.git
				synced 2025-11-04 18:52:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			729 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			729 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
    <link rel="icon" href="/favicon.png" type="image/png">
 | 
						|
    <title>React Page</title>
 | 
						|
    <style>
 | 
						|
      html,
 | 
						|
      body,
 | 
						|
      #root {
 | 
						|
        width: 100%;
 | 
						|
        height: 100%;
 | 
						|
      }
 | 
						|
 | 
						|
      #root {
 | 
						|
        position: relative;
 | 
						|
        overflow: auto;
 | 
						|
      }
 | 
						|
 | 
						|
      #root::-webkit-scrollbar {
 | 
						|
        width: 0 !important;
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
  </head>
 | 
						|
  <body style="font-size: 14px">
 | 
						|
    <div id="root"></div>
 | 
						|
    <script type="module" src="./main.tsx"></script>
 | 
						|
  </body>
 | 
						|
</html>
 |