1 2 3 4 5 6 7 8
'use server' import { getGroup } from '@/lib/api' export async function getGroupInfoAction(groupId: string) { 'use server' return getGroup(groupId) }