+ )
+}
+
+export default AddGroup
diff --git a/frontend/src/views/coordinator/Groups.tsx b/frontend/src/views/coordinator/Groups.tsx
index 006ca9f..03eaa88 100644
--- a/frontend/src/views/coordinator/Groups.tsx
+++ b/frontend/src/views/coordinator/Groups.tsx
@@ -1,3 +1,70 @@
-const Groups = () => <>Grupy>
+import { useNavigate } from 'react-router-dom'
-export default Groups;
\ No newline at end of file
+const Groups = () => {
+ let navigate = useNavigate()
+
+ const data = [
+ {
+ id: 1,
+ name: 'Zarządzanie budżetem',
+ project_supervisor: 'Wojciech Wawrzyniak',
+ members_count: 3,
+ first_term: 0,
+ second_term: 0,
+ },
+ {
+ id: 2,
+ name: 'GatherUp',
+ project_supervisor: 'Wojciech Wawrzyniak',
+ members_count: 4,
+ first_term: 0,
+ second_term: 0,
+ },
+ ]
+
+ return (
+