config webpack

This commit is contained in:
v1ll4n
2024-03-20 17:59:09 +08:00
parent 74dc812f8f
commit 1a790a964b
24 changed files with 2660 additions and 274 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App/>);