More work.

This commit is contained in:
2025-05-25 22:21:45 -04:00
parent 290f3816c5
commit 6d7f8b182c
9 changed files with 20323 additions and 138 deletions
+11
View File
@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css'; // Your global styles / Tailwind imports
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);