Merge version_1 into main #2

Merged
development merged 11 commits from version_1 into main 2026-01-20 13:58:38 +00:00
Showing only changes of commit c320dac1dd - Show all commits

11
src/index.js Normal file
View File

@@ -0,0 +1,11 @@
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(
<React.StrictMode>
<App />
</React.StrictMode>
);