Skip to content

Commit 0d3ac0a

Browse files
fix: add missing React import in main.jsx
import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import './index.css'; import App from './App.jsx'; createRoot(document.getElementById('root')).render( <StrictMode> <App /> </StrictMode>, );
1 parent 00fa008 commit 0d3ac0a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { StrictMode } from 'react'
2-
import { createRoot } from 'react-dom/client'
3-
import './index.css'
4-
import App from './App.jsx'
1+
import { StrictMode } from 'react';
2+
import { createRoot } from 'react-dom/client';
3+
import './index.css';
4+
import App from './App.jsx';
55

66
createRoot(document.getElementById('root')).render(
77
<StrictMode>
88
<App />
99
</StrictMode>,
10-
)
10+
);

0 commit comments

Comments
 (0)