diff --git a/frontend/src/components/group/GroupListBox.tsx b/frontend/src/components/group/GroupListBox.tsx index 92044aa..7330935 100644 --- a/frontend/src/components/group/GroupListBox.tsx +++ b/frontend/src/components/group/GroupListBox.tsx @@ -1,5 +1,6 @@ import {Box, Heading} from "@steffo/bluelib-react" import * as React from "react" +import {useInstanceContext} from "../../contexts/instance" import {ManagedViewSet} from "../../hooks/useManagedViewSet" import {SophonResearchGroup} from "../../types/SophonTypes" import {GroupResourcePanel} from "./GroupResourcePanel" @@ -11,13 +12,16 @@ export interface GroupListBoxProps { export function GroupListBox({viewSet}: GroupListBoxProps): JSX.Element { - // TODO: Add some flavour text + const instance = useInstanceContext() return ( - Research groups + Research groups on {instance?.state.details?.name} +

+ Research groups are groups of people that work together on one or more research projects. +

{viewSet.resources?.map(res => )}
)