Skip to content

Commit

Permalink
fix: strict mode 지우기
Browse files Browse the repository at this point in the history
  • Loading branch information
Wang HoEun committed Jan 11, 2024
1 parent 2447b1d commit 342a49a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import Styles from './style/index.tsx';

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

0 comments on commit 342a49a

Please sign in to comment.