first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-09 12:05:38 -05:00
commit 9ef6370717
23 changed files with 17745 additions and 0 deletions
+11
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>
);