Skip to content

Commit

Permalink
fix: style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriocomo committed Sep 27, 2024
1 parent f740caa commit c83524a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script src="wasm_exec.js" ></script>
</head>
<body>
<div id="root"></div>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createRoot } from 'react-dom/client'
import App from './app/App.tsx'
// import './index.css'

createRoot(document.getElementById('root')!).render(
createRoot(document.getElementById('app')!).render(
// <StrictMode>
<App />
// </StrictMode>,
Expand Down

0 comments on commit c83524a

Please sign in to comment.