first commit
This commit is contained in:
16
2024. 12. 10/test/src/index.js
Normal file
16
2024. 12. 10/test/src/index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import Auto from "./Auto"
|
||||
import reportWebVitals from './reportWebVitals';
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<Auto />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
|
||||
reportWebVitals();
|
||||
Reference in New Issue
Block a user