Skip to content

Commit

Permalink
chore: fix typescript warning
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Apr 3, 2022
1 parent b88a1a9 commit 0461d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-vite/template-react-ts/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'

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

0 comments on commit 0461d10

Please sign in to comment.