People without a carpool
+ {!hasCarpool && (
+
+ Click to add
+ someone to the temporary invite list
+
+ )}
{signupsWithoutCarpool.map((signup) => (
))}
diff --git a/src/components/Groups/GroupList.tsx b/src/components/Groups/GroupList.tsx
index 541e76c..c4b448b 100644
--- a/src/components/Groups/GroupList.tsx
+++ b/src/components/Groups/GroupList.tsx
@@ -1,30 +1,39 @@
import { IGroup } from '../types';
+import UILink from '../UI/UILink';
import UISecondaryBox from '../UI/UISecondaryBox';
function GroupListItem({ group }: { group: IGroup }) {
return (
-
-
+ {
- window.location.href = `/groups/${group.id}`;
+ fontSize: '1.5rem',
+ fontWeight: 'bold',
+ display: 'block',
+ marginTop: '1rem',
+ marginBottom: '1rem',
+ marginRight: '2rem',
}}
>
{group.name}
-
-
+
+
View group
+
);
}
export default function GroupList({ groups }: { groups: IGroup[] }) {
return (
-