13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
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;
|