Skip to content

Commit

Permalink
chore :: del strictmode
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Apr 16, 2024
1 parent 5f6938f commit 959e059
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import { App } from './App.tsx'
import ReactDOM from 'react-dom/client';
import { App } from './App.tsx';

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

0 comments on commit 959e059

Please sign in to comment.