ADD: added raw structure

This commit is contained in:
2025-05-18 20:14:40 +02:00
parent a43af99699
commit 214ab55ad2
27 changed files with 16731 additions and 0 deletions

12
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import GroupsPage from './pages/GroupsPage';
function App() {
return (
<div className="min-h-screen bg-gray-100">
<GroupsPage />
</div>
);
}
export default App;