Merge branch 'master' into feature/prettier
This commit is contained in:
		
						commit
						8c1f86a857
					
				
							
								
								
									
										8
									
								
								src/App.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								src/App.tsx
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,8 @@ | ||||
| import React from 'react' | ||||
| 
 | ||||
| export default function App() { | ||||
|   const [count, setCount] = React.useState(0) | ||||
|   return <button onClick={() => setCount((count) => count + 1)}> | ||||
|     count is {count} | ||||
|   </button>; | ||||
| } | ||||
| @ -1,12 +1,6 @@ | ||||
| import React from 'react' | ||||
| import ReactDOM from 'react-dom/client' | ||||
| 
 | ||||
| function App() { | ||||
|   const [count, setCount] = React.useState(0) | ||||
|   return <button onClick={() => setCount((count) => count + 1)}> | ||||
|     count is {count} | ||||
|   </button>; | ||||
| } | ||||
| import App from './App'; | ||||
| 
 | ||||
| const root = document.getElementById('root'); | ||||
| root && ReactDOM.createRoot(root).render(<React.StrictMode><App /></React.StrictMode>); | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user